Moby Disk Consulting
Software Development, Training & Consulting
William Garrison - mobydisk at mobydisk daht com

.NET Framework Delegates

There are many times I have created an event but lamented having to create yet another delegate for it. Fortunately, that isn't an issue any longer thanks to the Action<>, Func<>, and EventHandler<T> delegates. But every now and then I wonder if there is a delegate that already matches the signature I wanted. For example, I recently used a ThreadExceptionEventHandler for reporting errors via an event. So to finally satiate my curiosity I created a comprehensive list of all delegates in the .NET 4 framework:

See also my list of all .NET exceptions.

mscorlib

Void System.Action()Encapsulates a method that has no parameters and does not return a value.
Void System.Action`1(T obj)Encapsulates a method that has a single parameter and does not return a value.
Void System.Action`2(T1 arg1, T2 arg2)Encapsulates a method that has two parameters and does not return a value.
Void System.Action`3(T1 arg1, T2 arg2, T3 arg3)Encapsulates a method that has three parameters and does not return a value.
Void System.Action`4(T1 arg1, T2 arg2, T3 arg3, T4 arg4)Encapsulates a method that has four parameters and does not return a value.
Void System.Action`5(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5)Encapsulates a method that has five parameters and does not return a value.
Void System.Action`6(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6)Encapsulates a method that has six parameters and does not return a value.
Void System.Action`7(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7)Encapsulates a method that has seven parameters and does not return a value.
Void System.Action`8(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8)Encapsulates a method that has eight parameters and does not return a value.
Void System.AppDomainInitializer(String[] args)Represents the callback method to invoke when the application domain is initialized.
Void System.AssemblyLoadEventHandler(Object sender, AssemblyLoadEventArgs args)Represents the method that handles the event of an .
Void System.AsyncCallback(IAsyncResult ar)References a method to be called when a corresponding asynchronous operation completes.
Int32 System.Comparison`1(T x, T y)Represents the method that compares two objects of the same type.
Void System.ConsoleCancelEventHandler(Object sender, ConsoleCancelEventArgs e)Represents the method that will handle the event of a .
Void System.Threading.ContextCallback(Object state)Represents a method to be called within a new context.
TOutput System.Converter`2(TInput input)Represents a method that converts an object from one type to another type.
Void System.CrossAppDomainDelegate()Used by for cross-application domain calls.
Void System.Runtime.Remoting.Contexts.CrossContextDelegate()Represents the method that will handle the requests of execution of some code in another context.
Void System.EventHandler(Object sender, EventArgs e)Represents the method that will handle an event that has no event data.
Void System.EventHandler`1(Object sender, TEventArgs e)Represents the method that will handle an event.
TResult System.Func`1()Encapsulates a method that has no parameters and returns a value of the type specified by the parameter.
TResult System.Func`2(T arg)Encapsulates a method that has one parameter and returns a value of the type specified by the parameter.
TResult System.Func`3(T1 arg1, T2 arg2)Encapsulates a method that has two parameters and returns a value of the type specified by the parameter.
TResult System.Func`4(T1 arg1, T2 arg2, T3 arg3)Encapsulates a method that has three parameters and returns a value of the type specified by the parameter.
TResult System.Func`5(T1 arg1, T2 arg2, T3 arg3, T4 arg4)Encapsulates a method that has four parameters and returns a value of the type specified by the parameter.
TResult System.Func`6(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5)Encapsulates a method that has five parameters and returns a value of the type specified by the parameter.
TResult System.Func`7(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6)Encapsulates a method that has six parameters and returns a value of the type specified by the parameter.
TResult System.Func`8(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7)Encapsulates a method that has seven parameters and returns a value of the type specified by the parameter.
TResult System.Func`9(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8)Encapsulates a method that has eight parameters and returns a value of the type specified by the parameter.
Object System.Runtime.Remoting.Messaging.HeaderHandler(Runtime.Remoting.Messaging.Header[] headers)Represents the method that will handle processing of headers on the stream during deserialization.
Void System.Threading.IOCompletionCallback(UInt32 errorCode, UInt32 numBytes, Threading.NativeOverlapped* pOVERLAP)Receives the error code, number of bytes, and overlapped value type when an I/O operation completes on the thread pool.
Boolean System.Reflection.MemberFilter(Reflection.MemberInfo m, Object filterCriteria)Represents a delegate that is used to filter a list of members represented in an array of objects.
Boolean System.Runtime.Remoting.Messaging.MessageSurrogateFilter(String key, Object value)Determines whether the class should ignore a particular property while creating an for a class.
Reflection.Module System.Reflection.ModuleResolveEventHandler(Object sender, ResolveEventArgs e)Represents the method that will handle the event of an .
IntPtr System.Runtime.InteropServices.ObjectCreationDelegate(IntPtr aggregator)Creates a COM object.
Void System.Threading.ParameterizedThreadStart(Object obj)Represents the method that executes on a .
Boolean System.Predicate`1(T obj)Represents the method that defines a set of criteria and determines whether the specified object meets those criteria.
Reflection.Assembly System.ResolveEventHandler(Object sender, ResolveEventArgs args)Represents a method that handles the , , or event of an .
Void System.Threading.SendOrPostCallback(Object state)Represents a method to be called when a message is to be dispatched to a synchronization context.
Void System.Threading.ThreadStart()Represents the method that executes on a .
Void System.Threading.TimerCallback(Object state)Represents the method that handles calls from a .
Boolean System.Reflection.TypeFilter(Type m, Object filterCriteria)Filters the classes represented in an array of objects.
Void System.UnhandledExceptionEventHandler(Object sender, UnhandledExceptionEventArgs e)Represents the method that will handle the event raised by an exception that is not handled by the application domain.
Void System.Threading.WaitCallback(Object state)Represents a callback method to be executed by a thread pool thread.
Void System.Threading.WaitOrTimerCallback(Object state, Boolean timedOut)Represents a method to be called when a is signaled or times out.

AspNetMMCExt

Boolean Microsoft.Aspnet.Snapin.DialogProc(IntPtr hwndDlg, Int32 uMsg, IntPtr wParam, IntPtr lParam)
Int32 Microsoft.Aspnet.Snapin.PropSheetPageProc(IntPtr hwnd, Int32 uMsg, IntPtr lParam)

Microsoft.Build

Void Microsoft.Build.Execution.BuildSubmissionCompleteCallback(Microsoft.Build.Execution.BuildSubmission submission)A callback function that receives notification when a build completes.
Void Microsoft.Build.Logging.ColorResetter()Type of delegate used to reset console color.
Void Microsoft.Build.Logging.ColorSetter(ConsoleColor color)Type of delegate used to set console color.
Void Microsoft.Build.Logging.WriteHandler(String message)Delegate used for writing a string to some location like the console window or the IDE build window.

Microsoft.Build.Engine

Void Microsoft.Build.BuildEngine.ColorResetter()Defines the type of delegate used to reset the console color.
Void Microsoft.Build.BuildEngine.ColorSetter(ConsoleColor color)Defines the type of delegate used to set the console color.
Void Microsoft.Build.BuildEngine.WriteHandler(String message)Represents the method that writes strings to a certain location, such as the console window or a window in an integrated development environment.

Microsoft.Build.Framework

Void Microsoft.Build.Framework.AnyEventHandler(Object sender, Microsoft.Build.Framework.BuildEventArgs e)Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.BuildErrorEventHandler(Object sender, Microsoft.Build.Framework.BuildErrorEventArgs e)Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.BuildFinishedEventHandler(Object sender, Microsoft.Build.Framework.BuildFinishedEventArgs e)Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.BuildMessageEventHandler(Object sender, Microsoft.Build.Framework.BuildMessageEventArgs e)Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.BuildStartedEventHandler(Object sender, Microsoft.Build.Framework.BuildStartedEventArgs e)Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.BuildStatusEventHandler(Object sender, Microsoft.Build.Framework.BuildStatusEventArgs e)Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.BuildWarningEventHandler(Object sender, Microsoft.Build.Framework.BuildWarningEventArgs e)Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.CustomBuildEventHandler(Object sender, Microsoft.Build.Framework.CustomBuildEventArgs e)Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.ProjectFinishedEventHandler(Object sender, Microsoft.Build.Framework.ProjectFinishedEventArgs e)Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.ProjectStartedEventHandler(Object sender, Microsoft.Build.Framework.ProjectStartedEventArgs e)Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.TargetFinishedEventHandler(Object sender, Microsoft.Build.Framework.TargetFinishedEventArgs e)Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.TargetStartedEventHandler(Object sender, Microsoft.Build.Framework.TargetStartedEventArgs e)Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.TaskFinishedEventHandler(Object sender, Microsoft.Build.Framework.TaskFinishedEventArgs e)Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.TaskStartedEventHandler(Object sender, Microsoft.Build.Framework.TaskStartedEventArgs e)Represents the method that will handle the event of a build.

Microsoft.Build.Utilities.v4.0

Boolean Microsoft.Build.Utilities.DependencyFilter(String fullPath)Dependency filter delegate. Used during TLog saves in order for tasks to selectively remove dependencies from the written graph.

Microsoft.VisualBasic

Void Microsoft.VisualBasic.Devices.NetworkAvailableEventHandler(Object sender, Microsoft.VisualBasic.Devices.NetworkAvailableEventArgs e)Represents the method that will handle the My.Application.NetworkAvailabilityChanged or My.Computer.Network.NetworkAvailabilityChanged event.
Void Microsoft.VisualBasic.ApplicationServices.ShutdownEventHandler(Object sender, EventArgs e)Represents the method that will handle the My.Application.Shutdown event.
Void Microsoft.VisualBasic.ApplicationServices.StartupEventHandler(Object sender, Microsoft.VisualBasic.ApplicationServices.StartupEventArgs e)Represents the method that will handle the My.Application.Startup event.
Void Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventHandler(Object sender, Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventArgs e)Represents the method that will handle the My.Application.StartupNextInstance event.
Void Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventHandler(Object sender, Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs e)Represents the method that will handle the My.Application.UnhandledException event.

Microsoft.VisualC.STLCLR

TResult Microsoft.VisualC.StlClr.BinaryDelegate`3(TArg1 , TArg2 )Describes a two-argument delegate. You use it to specify the arguments and return type of the delegate.
TResult Microsoft.VisualC.StlClr.UnaryDelegate`2(TArg )Describes a one-argument delegate. You use it to specify the argument and return type of the delegate.

System.Activities

Void System.Activities.BookmarkCallback(Activities.NativeActivityContext context, Activities.Bookmark bookmark, Object value)Represents the method that is called when a is resumed.
Void System.Activities.CompletionCallback(Activities.NativeActivityContext context, Activities.ActivityInstance completedInstance)The method that is called when an activity completes.
Void System.Activities.CompletionCallback`1(Activities.NativeActivityContext context, Activities.ActivityInstance completedInstance, TResult result)The method that is called when an activity completes.
Void System.Activities.DelegateCompletionCallback(Activities.NativeActivityContext context, Activities.ActivityInstance completedInstance, Collections.Generic.IDictionary`2[[String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] outArguments)Represents the method that is called when an completes.
Void System.Activities.FaultCallback(Activities.NativeActivityFaultContext faultContext, Exception propagatedException, Activities.ActivityInstance propagatedFrom)Represents the method that is called when a scheduled activity or one of its children enters the state.

System.Activities.Presentation

Void System.Activities.Presentation.Metadata.AttributeCallback(Activities.Presentation.Metadata.AttributeCallbackBuilder builder)
Object System.Activities.Presentation.Model.PropertyValueMorphHelper(Activities.Presentation.Model.ModelItem originalValue, Activities.Presentation.Model.ModelProperty newModelProperty)
Object System.Activities.Presentation.PublishServiceCallback(Type serviceType)
TServiceType System.Activities.Presentation.PublishServiceCallback`1()
Void System.Activities.Presentation.SubscribeContextCallback(Activities.Presentation.ContextItem item)
Void System.Activities.Presentation.SubscribeContextCallback`1(TContextItemType item)
Void System.Activities.Presentation.SubscribeServiceCallback(Type serviceType, Object serviceInstance)
Void System.Activities.Presentation.SubscribeServiceCallback`1(TServiceType serviceInstance)
Void System.Activities.Presentation.Toolbox.ToolCreatedEventHandler(Object sender, Activities.Presentation.Toolbox.ToolCreatedEventArgs e)
Void System.Activities.Presentation.View.ViewStateChangedEventHandler(Object sender, Activities.Presentation.View.ViewStateChangedEventArgs e)
Void System.Activities.Presentation.Hosting.WindowMessage(Int32 msgId, IntPtr parameter1, IntPtr parameter2)

System.Configuration

Void System.Configuration.Internal.InternalConfigEventHandler(Object sender, Configuration.Internal.InternalConfigEventArgs e)Defines a class used by the .NET Framework infrastructure to support configuration events.
Void System.Configuration.Internal.StreamChangeCallback(String streamName)Represents a method for hosts to call when a monitored stream has changed.
Void System.Configuration.ValidatorCallback(Object value)Represents a method to be called after the validation of an object.

System.Configuration.Install

Void System.Configuration.Install.InstallEventHandler(Object sender, Configuration.Install.InstallEventArgs e)Represents the method that will handle the , , , , , , , or event of an .

System.Core

Void System.Action`10(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10)Encapsulates a method that has 10 parameters and does not return a value.
Void System.Action`11(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11)Encapsulates a method that has 11 parameters and does not return a value.
Void System.Action`12(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12)Encapsulates a method that has 12 parameters and does not return a value.
Void System.Action`13(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13)Encapsulates a method that has 13 parameters and does not return a value.
Void System.Action`14(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14)Encapsulates a method that has 14 parameters and does not return a value.
Void System.Action`15(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15)Encapsulates a method that has 15 parameters and does not return a value.
Void System.Action`16(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, T16 arg16)Encapsulates a method that has 16 parameters and does not return a value.
Void System.Action`9(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9)Encapsulates a method that has nine parameters and does not return a value.
TResult System.Func`10(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9)Encapsulates a method that has nine parameters and returns a value of the type specified by the parameter.
TResult System.Func`11(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10)Encapsulates a method that has 10 parameters and returns a value of the type specified by the parameter.
TResult System.Func`12(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11)Encapsulates a method that has 11 parameters and returns a value of the type specified by the parameter.
TResult System.Func`13(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12)Encapsulates a method that has 12 parameters and returns a value of the type specified by the parameter.
TResult System.Func`14(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13)Encapsulates a method that has 13 parameters and returns a value of the type specified by the parameter.
TResult System.Func`15(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14)Encapsulates a method that has 14 parameters and returns a value of the type specified by the parameter.
TResult System.Func`16(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15)Encapsulates a method that has 15 parameters and returns a value of the type specified by the parameter.
TResult System.Func`17(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, T16 arg16)Encapsulates a method that has 16 parameters and returns a value of the type specified by the parameter.
Void System.IO.Pipes.PipeStreamImpersonationWorker()Represents the method to call as the client.

System.Data

Void System.Data.DataColumnChangeEventHandler(Object sender, Data.DataColumnChangeEventArgs e)Represents the method that will handle the event.
Void System.Data.DataRowChangeEventHandler(Object sender, Data.DataRowChangeEventArgs e)Represents the method that will handle the , , , and events of a .
Void System.Data.DataTableClearEventHandler(Object sender, Data.DataTableClearEventArgs e)Represents the method that handles the method.
Void System.Data.DataTableNewRowEventHandler(Object sender, Data.DataTableNewRowEventArgs e)Represents the method that handles the method.
Void System.Data.FillErrorEventHandler(Object sender, Data.FillErrorEventArgs e)Represents the method that will handle the event.
Void System.Data.MergeFailedEventHandler(Object sender, Data.MergeFailedEventArgs e)Represents the method that will handle the event.
Void System.Data.Odbc.OdbcInfoMessageEventHandler(Object sender, Data.Odbc.OdbcInfoMessageEventArgs e)Represents the method that will handle the event of an .
Void System.Data.Odbc.OdbcRowUpdatedEventHandler(Object sender, Data.Odbc.OdbcRowUpdatedEventArgs e)Represents the method that will handle the event of an .
Void System.Data.Odbc.OdbcRowUpdatingEventHandler(Object sender, Data.Odbc.OdbcRowUpdatingEventArgs e)Represents the method that will handle the event of an .
Void System.Data.OleDb.OleDbInfoMessageEventHandler(Object sender, Data.OleDb.OleDbInfoMessageEventArgs e)Represents the method that will handle the event of an .
Void System.Data.OleDb.OleDbRowUpdatedEventHandler(Object sender, Data.OleDb.OleDbRowUpdatedEventArgs e)Represents the method that will handle the event of an .
Void System.Data.OleDb.OleDbRowUpdatingEventHandler(Object sender, Data.OleDb.OleDbRowUpdatingEventArgs e)Represents the method that will handle the event of an .
Void System.Data.SqlClient.OnChangeEventHandler(Object sender, Data.SqlClient.SqlNotificationEventArgs e)Handles the event that is fired when a notification is received for any of the commands associated with a object.
Void System.Data.SqlClient.SqlInfoMessageEventHandler(Object sender, Data.SqlClient.SqlInfoMessageEventArgs e)Represents the method that will handle the event of a .
Void System.Data.SqlClient.SqlRowsCopiedEventHandler(Object sender, Data.SqlClient.SqlRowsCopiedEventArgs e)Represents the method that handles the event of a .
Void System.Data.SqlClient.SqlRowUpdatedEventHandler(Object sender, Data.SqlClient.SqlRowUpdatedEventArgs e)Represents the method that will handle the event of a .
Void System.Data.SqlClient.SqlRowUpdatingEventHandler(Object sender, Data.SqlClient.SqlRowUpdatingEventArgs e)Represents the method that will handle the event of a .
Void System.Data.StateChangeEventHandler(Object sender, Data.StateChangeEventArgs e)Represents the method that will handle the event.
Void System.Data.StatementCompletedEventHandler(Object sender, Data.StatementCompletedEventArgs e)The delegate type for the event handlers of the event.

System.Data.Entity.Design

Void System.Data.Entity.Design.PropertyGeneratedEventHandler(Object sender, Data.Entity.Design.PropertyGeneratedEventArgs e)Represents the method that will handle the event.
Void System.Data.Entity.Design.TypeGeneratedEventHandler(Object sender, Data.Entity.Design.TypeGeneratedEventArgs e)Represents the method that will handle the event.

System.Data.Entity

Void System.Data.Objects.ObjectMaterializedEventHandler(Object sender, Data.Objects.ObjectMaterializedEventArgs e)Represents the method that will handle the event of the .

System.Data.OracleClient

Void System.Data.OracleClient.OracleInfoMessageEventHandler(Object sender, Data.OracleClient.OracleInfoMessageEventArgs e)Represents the method that will handle the event of an .
Void System.Data.OracleClient.OracleRowUpdatedEventHandler(Object sender, Data.OracleClient.OracleRowUpdatedEventArgs e)Represents the method that will handle the event of an .
Void System.Data.OracleClient.OracleRowUpdatingEventHandler(Object sender, Data.OracleClient.OracleRowUpdatingEventArgs e)Represents the method that will handle the event of an .

System.Deployment

Void System.Deployment.Application.CheckForUpdateCompletedEventHandler(Object sender, Deployment.Application.CheckForUpdateCompletedEventArgs e)Represents the method that will handle the event of an .
Void System.Deployment.Application.DeploymentProgressChangedEventHandler(Object sender, Deployment.Application.DeploymentProgressChangedEventArgs e)Represents the method that will handle the event, event, or event of an .
Void System.Deployment.Application.DownloadFileGroupCompletedEventHandler(Object sender, Deployment.Application.DownloadFileGroupCompletedEventArgs e)Represents the method that will handle the event of an .

System.Design

Void System.ComponentModel.Design.ActiveDesignSurfaceChangedEventHandler(Object sender, ComponentModel.Design.ActiveDesignSurfaceChangedEventArgs e)Represents the method that will handle the event of a . This class cannot be inherited.
Void System.Windows.Forms.Design.Behavior.BehaviorDragDropEventHandler(Object sender, Windows.Forms.Design.Behavior.BehaviorDragDropEventArgs e)Represents the methods that will handle the and events of a . This class cannot be inherited.
Void System.ComponentModel.Design.DesignerActionListsChangedEventHandler(Object sender, ComponentModel.Design.DesignerActionListsChangedEventArgs e)Represents the method that will handle the event of a . This class cannot be inherited.
Void System.ComponentModel.Design.DesignerActionUIStateChangeEventHandler(Object sender, ComponentModel.Design.DesignerActionUIStateChangeEventArgs e)Represents the method that will handle the event of a .
Void System.ComponentModel.Design.DesignSurfaceEventHandler(Object sender, ComponentModel.Design.DesignSurfaceEventArgs e)Represents the method that will handle the event of a class. This class cannot be inherited.
Void System.ComponentModel.Design.LoadedEventHandler(Object sender, ComponentModel.Design.LoadedEventArgs e)Represents the method that will handle the event of the class. This class cannot be inherited.
Void System.ComponentModel.Design.MenuCommandsChangedEventHandler(Object sender, ComponentModel.Design.MenuCommandsChangedEventArgs e)Represents the method that will handle the event of a . This class cannot be inherited.
Boolean System.Web.UI.Design.TransactedChangeCallback(Object context)A delegate that refers to a method in a custom object that is to be called by the method for implementing property changes in the designer's associated control.
Void System.Web.UI.Design.ViewEventHandler(Object sender, Web.UI.Design.ViewEventArgs e)Represents the method that will handle the event that is raised by visual design tools, such as Visual Studio 2005, implementing the interface. This class cannot be inherited.

System.DirectoryServices

Boolean System.DirectoryServices.ActiveDirectory.SyncUpdateCallback(DirectoryServices.ActiveDirectory.SyncFromAllServersEvent eventType, String targetServer, String sourceServer, DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException exception)Receives event notifications during a replica synchronization.

System.DirectoryServices.Protocols

Void System.DirectoryServices.Protocols.DereferenceConnectionCallback(DirectoryServices.Protocols.LdapConnection primaryConnection, DirectoryServices.Protocols.LdapConnection connectionToDereference)The delegate dereferences a connection that is no longer required. The connection was probably established through a successful call to the or delegate.
Boolean System.DirectoryServices.Protocols.NotifyOfNewConnectionCallback(DirectoryServices.Protocols.LdapConnection primaryConnection, DirectoryServices.Protocols.LdapConnection referralFromConnection, String newDistinguishedName, DirectoryServices.Protocols.LdapDirectoryIdentifier identifier, DirectoryServices.Protocols.LdapConnection newConnection, Net.NetworkCredential credential, Int64 currentUserToken, Int32 errorCodeFromBind)The delegate is called if a new connection was created while chasing a referral.
Security.Cryptography.X509Certificates.X509Certificate System.DirectoryServices.Protocols.QueryClientCertificateCallback(DirectoryServices.Protocols.LdapConnection connection, Byte[][] trustedCAs)The delegate gets or sets the default callback function used to specify the client certificates while establishing an SSL connection.
DirectoryServices.Protocols.LdapConnection System.DirectoryServices.Protocols.QueryForConnectionCallback(DirectoryServices.Protocols.LdapConnection primaryConnection, DirectoryServices.Protocols.LdapConnection referralFromConnection, String newDistinguishedName, DirectoryServices.Protocols.LdapDirectoryIdentifier identifier, Net.NetworkCredential credential, Int64 currentUserToken)The delegate determines whether there is a cached connection available for use.
Boolean System.DirectoryServices.Protocols.VerifyServerCertificateCallback(DirectoryServices.Protocols.LdapConnection connection, Security.Cryptography.X509Certificates.X509Certificate certificate)The delegate gets or sets the default callback function used to verify server certificates when establishing an SSL connection.

System

Void System.ComponentModel.Design.ActiveDesignerEventHandler(Object sender, ComponentModel.Design.ActiveDesignerEventArgs e)Represents the method that will handle the event.
Void System.ComponentModel.AddingNewEventHandler(Object sender, ComponentModel.AddingNewEventArgs e)Represents the method that will handle the event.
Void System.ComponentModel.AsyncCompletedEventHandler(Object sender, ComponentModel.AsyncCompletedEventArgs e)Represents the method that will handle the MethodNameCompleted event of an asynchronous operation.
Net.AuthenticationSchemes System.Net.AuthenticationSchemeSelector(Net.HttpListenerRequest httpRequest)Selects the authentication scheme for an instance.
Net.IPEndPoint System.Net.BindIPEndPoint(Net.ServicePoint servicePoint, Net.IPEndPoint remoteEndPoint, Int32 retryCount)Represents the method that specifies a local Internet Protocol address and port number for a .
Void System.ComponentModel.CancelEventHandler(Object sender, ComponentModel.CancelEventArgs e)Represents the method that handles a cancelable event.
Void System.ComponentModel.CollectionChangeEventHandler(Object sender, ComponentModel.CollectionChangeEventArgs e)Represents the method that handles the event raised when adding elements to or removing elements from a collection.
Void System.ComponentModel.Design.ComponentChangedEventHandler(Object sender, ComponentModel.Design.ComponentChangedEventArgs e)Represents the method that will handle a event.
Void System.ComponentModel.Design.ComponentChangingEventHandler(Object sender, ComponentModel.Design.ComponentChangingEventArgs e)Represents the method that will handle a event.
Void System.ComponentModel.Design.ComponentEventHandler(Object sender, ComponentModel.Design.ComponentEventArgs e)Represents the method that will handle the , , , and events raised for component-level events.
Void System.ComponentModel.Design.ComponentRenameEventHandler(Object sender, ComponentModel.Design.ComponentRenameEventArgs e)Represents the method that will handle a event.
Void System.Diagnostics.DataReceivedEventHandler(Object sender, Diagnostics.DataReceivedEventArgs e)Represents the method that will handle the event or event of a .
Void System.ComponentModel.Design.DesignerEventHandler(Object sender, ComponentModel.Design.DesignerEventArgs e)Represents the method that will handle the and events that are raised when a document is created or disposed of.
Void System.ComponentModel.Design.DesignerTransactionCloseEventHandler(Object sender, ComponentModel.Design.DesignerTransactionCloseEventArgs e)Represents the method that handles the and events of a designer.
Void System.Net.DownloadDataCompletedEventHandler(Object sender, Net.DownloadDataCompletedEventArgs e)Represents the method that will handle the event of a .
Void System.Net.DownloadProgressChangedEventHandler(Object sender, Net.DownloadProgressChangedEventArgs e)Represents the method that will handle the event of a .
Void System.Net.DownloadStringCompletedEventHandler(Object sender, Net.DownloadStringCompletedEventArgs e)Represents the method that will handle the event of a .
Void System.ComponentModel.DoWorkEventHandler(Object sender, ComponentModel.DoWorkEventArgs e)Represents the method that will handle the event. This class cannot be inherited.
Void System.Timers.ElapsedEventHandler(Object sender, Timers.ElapsedEventArgs e)Represents the method that will handle the event of a .
Void System.Diagnostics.EntryWrittenEventHandler(Object sender, Diagnostics.EntryWrittenEventArgs e)Represents the method that will handle the event of an .
Void System.IO.ErrorEventHandler(Object sender, IO.ErrorEventArgs e)Represents the method that will handle the event of a object.
Void System.IO.FileSystemEventHandler(Object sender, IO.FileSystemEventArgs e)Represents the method that will handle the , , or event of a class.
Void System.ComponentModel.HandledEventHandler(Object sender, ComponentModel.HandledEventArgs e)Represents a method that can handle events which may or may not require further processing after the event handler has returned.
Void System.Net.HttpContinueDelegate(Int32 StatusCode, Net.WebHeaderCollection httpHeaders)Represents the method that notifies callers when a continue response is received by the client.
Void System.ComponentModel.ListChangedEventHandler(Object sender, ComponentModel.ListChangedEventArgs e)Represents the method that will handle the event of the class.
Security.Cryptography.X509Certificates.X509Certificate System.Net.Security.LocalCertificateSelectionCallback(Object sender, String targetHost, Security.Cryptography.X509Certificates.X509CertificateCollection localCertificates, Security.Cryptography.X509Certificates.X509Certificate remoteCertificate, String[] acceptableIssuers)Selects the local Secure Sockets Layer (SSL) certificate used for authentication.
String System.Text.RegularExpressions.MatchEvaluator(Text.RegularExpressions.Match match)Represents the method that is called each time a regular expression match is found during a method operation.
Void System.Net.NetworkInformation.NetworkAddressChangedEventHandler(Object sender, EventArgs e)References one or more methods to be called when the address of a network interface changes.
Void System.Net.NetworkInformation.NetworkAvailabilityChangedEventHandler(Object sender, Net.NetworkInformation.NetworkAvailabilityEventArgs e)References one or more methods to be called when the availability of the network changes.
Void System.Collections.Specialized.NotifyCollectionChangedEventHandler(Object sender, Collections.Specialized.NotifyCollectionChangedEventArgs e)Represents the method that handles the event.
Void System.Net.OpenReadCompletedEventHandler(Object sender, Net.OpenReadCompletedEventArgs e)Represents the method that will handle the event of a .
Void System.Net.OpenWriteCompletedEventHandler(Object sender, Net.OpenWriteCompletedEventArgs e)Represents the method that will handle the event of a .
Void System.Net.NetworkInformation.PingCompletedEventHandler(Object sender, Net.NetworkInformation.PingCompletedEventArgs e)Represents the method that will handle the event of a object.
Void Microsoft.Win32.PowerModeChangedEventHandler(Object sender, Microsoft.Win32.PowerModeChangedEventArgs e)Represents the method that will handle the event.
Void System.ComponentModel.ProgressChangedEventHandler(Object sender, ComponentModel.ProgressChangedEventArgs e)Represents the method that will handle the event of the class. This class cannot be inherited.
Void System.ComponentModel.PropertyChangedEventHandler(Object sender, ComponentModel.PropertyChangedEventArgs e)Represents the method that will handle the event raised when a property is changed on a component.
Void System.ComponentModel.PropertyChangingEventHandler(Object sender, ComponentModel.PropertyChangingEventArgs e)Represents the method that will handle the event of an interface.
Void System.ComponentModel.RefreshEventHandler(ComponentModel.RefreshEventArgs e)Represents the method that handles the event raised when a or component is changed during design time.
Boolean System.Net.Security.RemoteCertificateValidationCallback(Object sender, Security.Cryptography.X509Certificates.X509Certificate certificate, Security.Cryptography.X509Certificates.X509Chain chain, Net.Security.SslPolicyErrors sslPolicyErrors)Verifies the remote Secure Sockets Layer (SSL) certificate used for authentication.
Void System.IO.RenamedEventHandler(Object sender, IO.RenamedEventArgs e)Represents the method that will handle the event of a class.
Void System.ComponentModel.Design.Serialization.ResolveNameEventHandler(Object sender, ComponentModel.Design.Serialization.ResolveNameEventArgs e)Represents the method that handles the event of a serialization manager.
Void System.ComponentModel.RunWorkerCompletedEventHandler(Object sender, ComponentModel.RunWorkerCompletedEventArgs e)Represents the method that will handle the event of a class.
Void System.Net.Mail.SendCompletedEventHandler(Object sender, ComponentModel.AsyncCompletedEventArgs e)Represents the method that will handle the event.
Void System.IO.Ports.SerialDataReceivedEventHandler(Object sender, IO.Ports.SerialDataReceivedEventArgs e)Represents the method that will handle the event of a object.
Void System.IO.Ports.SerialErrorReceivedEventHandler(Object sender, IO.Ports.SerialErrorReceivedEventArgs e)Represents the method that will handle the event of a object.
Void System.IO.Ports.SerialPinChangedEventHandler(Object sender, IO.Ports.SerialPinChangedEventArgs e)Represents the method that will handle the event of a object.
Object System.ComponentModel.Design.ServiceCreatorCallback(ComponentModel.Design.IServiceContainer container, Type serviceType)Provides a callback mechanism that can create an instance of a service on demand.
Void Microsoft.Win32.SessionEndedEventHandler(Object sender, Microsoft.Win32.SessionEndedEventArgs e)Represents the method that will handle the event.
Void Microsoft.Win32.SessionEndingEventHandler(Object sender, Microsoft.Win32.SessionEndingEventArgs e)Represents the method that will handle the event from the operating system.
Void Microsoft.Win32.SessionSwitchEventHandler(Object sender, Microsoft.Win32.SessionSwitchEventArgs e)Represents the method that will handle the event.
Void System.Configuration.SettingChangingEventHandler(Object sender, Configuration.SettingChangingEventArgs e)Represents the method that will handle the event.
Void System.Configuration.SettingsLoadedEventHandler(Object sender, Configuration.SettingsLoadedEventArgs e)Represents the method that will handle the event.
Void System.Configuration.SettingsSavingEventHandler(Object sender, ComponentModel.CancelEventArgs e)Represents the method that will handle the event.
Void System.Threading.ThreadExceptionEventHandler(Object sender, Threading.ThreadExceptionEventArgs e)Represents the method that will handle the event of an .
Void Microsoft.Win32.TimerElapsedEventHandler(Object sender, Microsoft.Win32.TimerElapsedEventArgs e)Represents the method that will handle the event.
Void System.Net.UploadDataCompletedEventHandler(Object sender, Net.UploadDataCompletedEventArgs e)Represents the method that will handle the event of a .
Void System.Net.UploadFileCompletedEventHandler(Object sender, Net.UploadFileCompletedEventArgs e)Represents the method that will handle the event of a .
Void System.Net.UploadProgressChangedEventHandler(Object sender, Net.UploadProgressChangedEventArgs e)Represents the method that will handle the event of a .
Void System.Net.UploadStringCompletedEventHandler(Object sender, Net.UploadStringCompletedEventArgs e)Represents the method that will handle the event of a .
Void System.Net.UploadValuesCompletedEventHandler(Object sender, Net.UploadValuesCompletedEventArgs e)Represents the method that will handle the event of a .
Void Microsoft.Win32.UserPreferenceChangedEventHandler(Object sender, Microsoft.Win32.UserPreferenceChangedEventArgs e)Represents the method that will handle the event.
Void Microsoft.Win32.UserPreferenceChangingEventHandler(Object sender, Microsoft.Win32.UserPreferenceChangingEventArgs e)Represents the method that will handle the event.

System.Drawing

Void System.Drawing.Imaging.PlayRecordCallback(Drawing.Imaging.EmfPlusRecordType recordType, Int32 flags, Int32 dataSize, IntPtr recordData)This delegate is not used. For an example of enumerating the records of a metafile, see .
Void System.Drawing.Printing.PrintEventHandler(Object sender, Drawing.Printing.PrintEventArgs e)Represents the method that will handle the or event of a .
Void System.Drawing.Printing.PrintPageEventHandler(Object sender, Drawing.Printing.PrintPageEventArgs e)Represents the method that will handle the event of a .
Void System.Drawing.Design.PropertyValueUIHandler(ComponentModel.ITypeDescriptorContext context, ComponentModel.PropertyDescriptor propDesc, Collections.ArrayList valueUIItemList)Represents the method that adds a delegate to an implementation of .
Void System.Drawing.Design.PropertyValueUIItemInvokeHandler(ComponentModel.ITypeDescriptorContext context, ComponentModel.PropertyDescriptor descriptor, Drawing.Design.PropertyValueUIItem invokedItem)Represents the method that will handle the event of a .
Void System.Drawing.Printing.QueryPageSettingsEventHandler(Object sender, Drawing.Printing.QueryPageSettingsEventArgs e)Represents the method that handles the event of a .
Void System.Drawing.Design.ToolboxComponentsCreatedEventHandler(Object sender, Drawing.Design.ToolboxComponentsCreatedEventArgs e)Represents the method that handles the event.
Void System.Drawing.Design.ToolboxComponentsCreatingEventHandler(Object sender, Drawing.Design.ToolboxComponentsCreatingEventArgs e)Represents the method that handles the event.
Drawing.Design.ToolboxItem System.Drawing.Design.ToolboxItemCreatorCallback(Object serializedObject, String format)Provides a callback mechanism that can create a .

System.Management

Void System.Management.CompletedEventHandler(Object sender, Management.CompletedEventArgs e)Represents the method that will handle the event.
Void System.Management.EventArrivedEventHandler(Object sender, Management.EventArrivedEventArgs e)Represents the method that will handle the event.
Void System.Management.ObjectPutEventHandler(Object sender, Management.ObjectPutEventArgs e)Represents the method that will handle the event.
Void System.Management.ObjectReadyEventHandler(Object sender, Management.ObjectReadyEventArgs e)Represents the method that will handle the event.
Void System.Management.ProgressEventHandler(Object sender, Management.ProgressEventArgs e)Represents the method that will handle the event.
Void System.Management.StoppedEventHandler(Object sender, Management.StoppedEventArgs e)Represents the method that will handle the event.

System.Messaging

Void System.Messaging.PeekCompletedEventHandler(Object sender, Messaging.PeekCompletedEventArgs e)Represents the method that will handle the event of a .
Void System.Messaging.ReceiveCompletedEventHandler(Object sender, Messaging.ReceiveCompletedEventArgs e)Represents the method that will handle the event of a .

System.Runtime.Caching

Void System.Runtime.Caching.CacheEntryRemovedCallback(Runtime.Caching.CacheEntryRemovedArguments arguments)Defines a reference to a method that is called after a cache entry is removed from the cache.
Void System.Runtime.Caching.CacheEntryUpdateCallback(Runtime.Caching.CacheEntryUpdateArguments arguments)Defines a reference to a method that is invoked when a cache entry is about to be removed from the cache.
Void System.Runtime.Caching.OnChangedCallback(Object state)Defines a reference to a method that handles changes to monitored items.

System.Runtime.Serialization

Void System.Xml.OnXmlDictionaryReaderClose(Xml.XmlDictionaryReader reader)delegate for a callback method when closing the reader.

System.ServiceModel

Void System.ServiceModel.Dispatcher.InstanceContextIdleCallback(ServiceModel.InstanceContext instanceContext)Represents the method that is called when an object has finished processing.
Void System.ServiceModel.Security.Tokens.IssuedSecurityTokenHandler(IdentityModel.Tokens.SecurityToken issuedToken, ServiceModel.EndpointAddress tokenRequestor)This delegate points to a method that when implemented will be called by the Authenticators before the token is issued to the client.
Void System.ServiceModel.Security.Tokens.RenewedSecurityTokenHandler(IdentityModel.Tokens.SecurityToken newSecurityToken, IdentityModel.Tokens.SecurityToken oldSecurityToken)The delegate when implemented is called before a renewed token is returned to the client.

System.Transactions

Transactions.Transaction System.Transactions.HostCurrentTransactionCallback()Provides a mechanism for the hosting environment to supply its own default notion of .
Void System.Transactions.TransactionCompletedEventHandler(Object sender, Transactions.TransactionEventArgs e)Represents the method that handles the event of a class.
Void System.Transactions.TransactionStartedEventHandler(Object sender, Transactions.TransactionEventArgs e)Represents the method that will handle the event of a class.

System.Web.ApplicationServices

Void System.Web.Security.MembershipValidatePasswordEventHandler(Object sender, Web.Security.ValidatePasswordEventArgs e)Represents the method that will handle the event of the class.

System.Web

Void System.Web.UI.WebControls.AdCreatedEventHandler(Object sender, Web.UI.WebControls.AdCreatedEventArgs e)Represents the method that handles the event of an control.
Void System.Web.Security.AnonymousIdentificationEventHandler(Object sender, Web.Security.AnonymousIdentificationEventArgs e)Represents the method that handles the AnonymousIdentification_Creating event of a .
Void System.Web.UI.WebControls.AuthenticateEventHandler(Object sender, Web.UI.WebControls.AuthenticateEventArgs e)Represents the method that will handle the event of a control.
IAsyncResult System.Web.BeginEventHandler(Object sender, EventArgs e, AsyncCallback cb, Object extraData)Represents the method that handles asynchronous events such as application events. This delegate is called at the start of an asynchronous operation.
Void System.Web.Compilation.BuildManagerHostUnloadEventHandler(Object sender, Web.Compilation.BuildManagerHostUnloadEventArgs e)Represents the method that handles the event and the event of a object.
Web.UI.Control System.Web.UI.BuildMethod()Represents the method that is used to build a control.
Void System.Web.UI.BuildTemplateMethod(Web.UI.Control control)Supports ASP.NET during the creation of a template for a templated control from generated class code. The delegate handles the method.
Void System.Web.UI.WebControls.BulletedListEventHandler(Object sender, Web.UI.WebControls.BulletedListEventArgs e)Represents the method that will handle the event of a control.
Void System.Web.Caching.CacheItemRemovedCallback(String key, Object value, Web.Caching.CacheItemRemovedReason reason)Defines a callback method for notifying applications when a cached item is removed from the .
Void System.Web.Caching.CacheItemUpdateCallback(String key, Web.Caching.CacheItemUpdateReason reason, Object& expensiveObject, Web.Caching.CacheDependency& dependency, DateTime& absoluteExpiration, TimeSpan& slidingExpiration)Defines a callback method for notifying applications before a cached item is removed from the cache.
Void System.Web.UI.WebControls.CommandEventHandler(Object sender, Web.UI.WebControls.CommandEventArgs e)Represents the method that will handle the Command event.
Web.UI.Control System.Web.UI.ControlSkinDelegate(Web.UI.Control control)Represents the method that applies the correct control skin to the specified control.
Void System.Web.UI.WebControls.CreateUserErrorEventHandler(Object sender, Web.UI.WebControls.CreateUserErrorEventArgs e)Represents the method that handles a event in the control.
Void System.Web.UI.WebControls.DataGridCommandEventHandler(Object source, Web.UI.WebControls.DataGridCommandEventArgs e)Represents the method that handles the , , , , and events of a control.
Void System.Web.UI.WebControls.DataGridItemEventHandler(Object sender, Web.UI.WebControls.DataGridItemEventArgs e)Represents the method that handles the and events of a control.
Void System.Web.UI.WebControls.DataGridPageChangedEventHandler(Object source, Web.UI.WebControls.DataGridPageChangedEventArgs e)Represents the method that handles the event of the control.
Void System.Web.UI.WebControls.DataGridSortCommandEventHandler(Object source, Web.UI.WebControls.DataGridSortCommandEventArgs e)Represents the method that handles the event of the control.
Void System.Web.UI.WebControls.DataListCommandEventHandler(Object source, Web.UI.WebControls.DataListCommandEventArgs e)Represents the method that will handle the , , , , and events of a control.
Void System.Web.UI.WebControls.DataListItemEventHandler(Object sender, Web.UI.WebControls.DataListItemEventArgs e)Represents the method that will handle the and events of the control.
Boolean System.Web.UI.DataSourceViewOperationCallback(Int32 affectedRecords, Exception ex)Represents the asynchronous callback method that a data-bound control supplies to a data source view for asynchronous insert, update, or delete data operations.
Void System.Web.UI.DataSourceViewSelectCallback(Collections.IEnumerable data)Represents the asynchronous callback method that a data-bound control supplies to a data source view for asynchronous data retrieval.
Void System.Web.UI.WebControls.DayRenderEventHandler(Object sender, Web.UI.WebControls.DayRenderEventArgs e)Represents the method that handles the event of the control.
Void System.Web.Security.DefaultAuthenticationEventHandler(Object sender, Web.Security.DefaultAuthenticationEventArgs e)Represents the method that handles the DefaultAuthentication_OnAuthenticate event of a .
Void System.Web.UI.WebControls.DetailsViewCommandEventHandler(Object sender, Web.UI.WebControls.DetailsViewCommandEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.DetailsViewDeletedEventHandler(Object sender, Web.UI.WebControls.DetailsViewDeletedEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.DetailsViewDeleteEventHandler(Object sender, Web.UI.WebControls.DetailsViewDeleteEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.DetailsViewInsertedEventHandler(Object sender, Web.UI.WebControls.DetailsViewInsertedEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.DetailsViewInsertEventHandler(Object sender, Web.UI.WebControls.DetailsViewInsertEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.DetailsViewModeEventHandler(Object sender, Web.UI.WebControls.DetailsViewModeEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.DetailsViewPageEventHandler(Object sender, Web.UI.WebControls.DetailsViewPageEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.DetailsViewUpdatedEventHandler(Object sender, Web.UI.WebControls.DetailsViewUpdatedEventArgs e)Represents the method that handles the event of a control. This class cannot be inherited.
Void System.Web.UI.WebControls.DetailsViewUpdateEventHandler(Object sender, Web.UI.WebControls.DetailsViewUpdateEventArgs e)Represents the method that handles the event of a control.
Void System.Web.EndEventHandler(IAsyncResult ar)Represents the method that handles asynchronous events such as application events.
Collections.Specialized.IOrderedDictionary System.Web.UI.ExtractTemplateValuesMethod(Web.UI.Control control)Provides a delegate with which ASP.NET extracts a set of name/value pairs from an object at run time. This class cannot be inherited.
Void System.Web.UI.WebControls.WebParts.FieldCallback(Object fieldValue)References the method to call when retrieving field data from a provider.
Void System.Web.Security.FormsAuthenticationEventHandler(Object sender, Web.Security.FormsAuthenticationEventArgs e)Represents the method that handles the FormsAuthentication_OnAuthenticate event of a .
Void System.Web.UI.WebControls.FormViewCommandEventHandler(Object sender, Web.UI.WebControls.FormViewCommandEventArgs e)Represents the method that handles the event of a control. This class cannot be inherited.
Void System.Web.UI.WebControls.FormViewDeletedEventHandler(Object sender, Web.UI.WebControls.FormViewDeletedEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.FormViewDeleteEventHandler(Object sender, Web.UI.WebControls.FormViewDeleteEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.FormViewInsertedEventHandler(Object sender, Web.UI.WebControls.FormViewInsertedEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.FormViewInsertEventHandler(Object sender, Web.UI.WebControls.FormViewInsertEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.FormViewModeEventHandler(Object sender, Web.UI.WebControls.FormViewModeEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.FormViewPageEventHandler(Object sender, Web.UI.WebControls.FormViewPageEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.FormViewUpdatedEventHandler(Object sender, Web.UI.WebControls.FormViewUpdatedEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.FormViewUpdateEventHandler(Object sender, Web.UI.WebControls.FormViewUpdateEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.GridViewCancelEditEventHandler(Object sender, Web.UI.WebControls.GridViewCancelEditEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.GridViewCommandEventHandler(Object sender, Web.UI.WebControls.GridViewCommandEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.GridViewDeletedEventHandler(Object sender, Web.UI.WebControls.GridViewDeletedEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.GridViewDeleteEventHandler(Object sender, Web.UI.WebControls.GridViewDeleteEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.GridViewEditEventHandler(Object sender, Web.UI.WebControls.GridViewEditEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.GridViewPageEventHandler(Object sender, Web.UI.WebControls.GridViewPageEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.GridViewRowEventHandler(Object sender, Web.UI.WebControls.GridViewRowEventArgs e)Represents the method that handles the and events of a control.
Void System.Web.UI.WebControls.GridViewSelectEventHandler(Object sender, Web.UI.WebControls.GridViewSelectEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.GridViewSortEventHandler(Object sender, Web.UI.WebControls.GridViewSortEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.GridViewUpdatedEventHandler(Object sender, Web.UI.WebControls.GridViewUpdatedEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.GridViewUpdateEventHandler(Object sender, Web.UI.WebControls.GridViewUpdateEventArgs e)Represents the method that handles the event of a control.
Void System.Web.HttpCacheValidateHandler(Web.HttpContext context, Object data, Web.HttpValidationStatus& validationStatus)Represents a method that is called to validate a cached item before the item is served from the cache.
String System.Web.HttpResponseSubstitutionCallback(Web.HttpContext context)Represents the method that handles post-cache substitution.
Void System.Web.UI.ImageClickEventHandler(Object sender, Web.UI.ImageClickEventArgs e)Represents the method that handles any events that are raised when a user clicks an image-based ASP.NET server control.
Void System.Web.UI.WebControls.ImageMapEventHandler(Object sender, Web.UI.WebControls.ImageMapEventArgs e)Represents the method that handles the event of an control.
Void System.Web.UI.WebControls.LoginCancelEventHandler(Object sender, Web.UI.WebControls.LoginCancelEventArgs e)Represents the method that handles a cancelable event.
Void System.Web.UI.WebControls.MailMessageEventHandler(Object sender, Web.UI.WebControls.MailMessageEventArgs e)Represents the method that handles mail events.
Void System.Web.UI.WebControls.MenuEventHandler(Object sender, Web.UI.WebControls.MenuEventArgs e)Represents the method that handles the event or event of a control.
Void System.Web.UI.WebControls.MonthChangedEventHandler(Object sender, Web.UI.WebControls.MonthChangedEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.WebControls.ObjectDataSourceDisposingEventHandler(Object sender, Web.UI.WebControls.ObjectDataSourceDisposingEventArgs e)Represents the method that will handle the event of the control.
Void System.Web.UI.WebControls.ObjectDataSourceFilteringEventHandler(Object sender, Web.UI.WebControls.ObjectDataSourceFilteringEventArgs e)Represents the method that will handle the event of the control.
Void System.Web.UI.WebControls.ObjectDataSourceMethodEventHandler(Object sender, Web.UI.WebControls.ObjectDataSourceMethodEventArgs e)Represents the method that will handle the , , , or event of the control.
Void System.Web.UI.WebControls.ObjectDataSourceObjectEventHandler(Object sender, Web.UI.WebControls.ObjectDataSourceEventArgs e)Represents the method that will handle the and events of the control.
Void System.Web.UI.WebControls.ObjectDataSourceSelectingEventHandler(Object sender, Web.UI.WebControls.ObjectDataSourceSelectingEventArgs e)Represents the method that will handle the event of the control.
Void System.Web.UI.WebControls.ObjectDataSourceStatusEventHandler(Object sender, Web.UI.WebControls.ObjectDataSourceStatusEventArgs e)Represents the method that will handle the , , , and events of the control.
Void System.Web.UI.WebControls.WebParts.ParametersCallback(Collections.IDictionary parametersData)References the method to call when retrieving row data from a provider.
Void System.Web.Profile.ProfileAutoSaveEventHandler(Object sender, Web.Profile.ProfileAutoSaveEventArgs e)Represents the method that will handle the event of a .
Void System.Web.Profile.ProfileEventHandler(Object sender, Web.Profile.ProfileEventArgs e)Represents the method that will handle the event of a .
Void System.Web.Profile.ProfileMigrateEventHandler(Object sender, Web.Profile.ProfileMigrateEventArgs e)Represents the method that will handle the event of the class.
Void System.Web.UI.RenderMethod(Web.UI.HtmlTextWriter output, Web.UI.Control container)Represents the method that renders the specified container to the specified .
Void System.Web.UI.WebControls.RepeaterCommandEventHandler(Object source, Web.UI.WebControls.RepeaterCommandEventArgs e)Represents the method that will handle the event of a .
Void System.Web.UI.WebControls.RepeaterItemEventHandler(Object sender, Web.UI.WebControls.RepeaterItemEventArgs e)Represents the method that will handle the and events of a .
Void System.Web.Security.RoleManagerEventHandler(Object sender, Web.Security.RoleManagerEventArgs e)Defines the delegate for the event of the class.
Void System.Web.UI.WebControls.WebParts.RowCallback(Object rowData)References the method to call when retrieving row data from a provider.
Void System.Web.UI.WebControls.SendMailErrorEventHandler(Object sender, Web.UI.WebControls.SendMailErrorEventArgs e)Represents the method that handles the SendMailError event of controls such as the control, the control, and the control.
Void System.Web.UI.WebControls.ServerValidateEventHandler(Object source, Web.UI.WebControls.ServerValidateEventArgs args)Represents the method that will handle the event of a control.
Void System.Web.SessionState.SessionStateItemExpireCallback(String id, Web.SessionState.SessionStateStoreData item)Represents the method that handles the event of a session-state module.
Void System.Web.UI.WebControls.SiteMapNodeItemEventHandler(Object sender, Web.UI.WebControls.SiteMapNodeItemEventArgs e)Represents the method that will handle the and events for the class.
Web.SiteMapNode System.Web.SiteMapResolveEventHandler(Object sender, Web.SiteMapResolveEventArgs e)Represents the method that will handle the event of a specific instance of the or static class.
Void System.Web.UI.WebControls.SqlDataSourceCommandEventHandler(Object sender, Web.UI.WebControls.SqlDataSourceCommandEventArgs e)Represents the method that will handle the , , and events of the control.
Void System.Web.UI.WebControls.SqlDataSourceFilteringEventHandler(Object sender, Web.UI.WebControls.SqlDataSourceFilteringEventArgs e)Represents the method that will handle the event of the control.
Void System.Web.UI.WebControls.SqlDataSourceSelectingEventHandler(Object sender, Web.UI.WebControls.SqlDataSourceSelectingEventArgs e)Represents the method that will handle the event of the control.
Void System.Web.UI.WebControls.SqlDataSourceStatusEventHandler(Object sender, Web.UI.WebControls.SqlDataSourceStatusEventArgs e)Represents the method that will handle the , , , and events of the control.
Void System.Web.UI.WebControls.WebParts.TableCallback(Collections.ICollection tableData)References the method to call when retrieving table data from a provider.
Void System.Web.TraceContextEventHandler(Object sender, Web.TraceContextEventArgs e)Represents the method that handles the event of a object.
Void System.Web.Util.TransactedCallback()Represents the callback method being run under transaction support.
Void System.Web.UI.WebControls.TreeNodeEventHandler(Object sender, Web.UI.WebControls.TreeNodeEventArgs e)Represents the method that will handle the , , , or event of the control.
Void System.Web.UI.WebControls.WebParts.WebPartAddingEventHandler(Object sender, Web.UI.WebControls.WebParts.WebPartAddingEventArgs e)Represents the method that handles the event of a object.
Void System.Web.UI.WebControls.WebParts.WebPartAuthorizationEventHandler(Object sender, Web.UI.WebControls.WebParts.WebPartAuthorizationEventArgs e)Represents the method that handles the event of a object.
Void System.Web.UI.WebControls.WebParts.WebPartCancelEventHandler(Object sender, Web.UI.WebControls.WebParts.WebPartCancelEventArgs e)Represents the method that will handle the event, event, or event of the class.
Void System.Web.UI.WebControls.WebParts.WebPartConnectionsCancelEventHandler(Object sender, Web.UI.WebControls.WebParts.WebPartConnectionsCancelEventArgs e)Represents the method that will handle the event or event of a control.
Void System.Web.UI.WebControls.WebParts.WebPartConnectionsEventHandler(Object sender, Web.UI.WebControls.WebParts.WebPartConnectionsEventArgs e)Represents the method that will handle the and events of the control.
Void System.Web.UI.WebControls.WebParts.WebPartDisplayModeCancelEventHandler(Object sender, Web.UI.WebControls.WebParts.WebPartDisplayModeCancelEventArgs e)Represents the method that handles the event of the class.
Void System.Web.UI.WebControls.WebParts.WebPartDisplayModeEventHandler(Object sender, Web.UI.WebControls.WebParts.WebPartDisplayModeEventArgs e)Represents the method that will handle the event of a object.
Void System.Web.UI.WebControls.WebParts.WebPartEventHandler(Object sender, Web.UI.WebControls.WebParts.WebPartEventArgs e)Represents the method that will handle the event, event, event, event, or event of a object.
Void System.Web.UI.WebControls.WebParts.WebPartMovingEventHandler(Object sender, Web.UI.WebControls.WebParts.WebPartMovingEventArgs e)Represents the method that will handle the event of a object.
Void System.Web.UI.WebControls.WebParts.WebPartVerbsEventHandler(Object sender, Web.UI.WebControls.WebParts.WebPartVerbsEventArgs e)Represents the delegate for the event.
Void System.Web.Security.WindowsAuthenticationEventHandler(Object sender, Web.Security.WindowsAuthenticationEventArgs e)Represents the method that handles the WindowsAuthentication_OnAuthenticate event of a .
Void System.Web.UI.WebControls.WizardNavigationEventHandler(Object sender, Web.UI.WebControls.WizardNavigationEventArgs e)Represents the method that will handle navigation events in a control.
Void System.Web.Util.WorkItemCallback()Represents the method that executes on a separate work item thread.

System.Web.Mobile

Void System.Web.UI.MobileControls.ListCommandEventHandler(Object sender, Web.UI.MobileControls.ListCommandEventArgs e)Represents the method that will handle the event of a .
Void System.Web.UI.MobileControls.ListDataBindEventHandler(Object sender, Web.UI.MobileControls.ListDataBindEventArgs e)Represents the method that handles the event of a control.
Void System.Web.UI.MobileControls.LoadItemsEventHandler(Object sender, Web.UI.MobileControls.LoadItemsEventArgs e)Represents the method that will handle the event of a control.
Void System.Web.UI.MobileControls.ObjectListCommandEventHandler(Object sender, Web.UI.MobileControls.ObjectListCommandEventArgs e)Represents the method that will handle the event of an .
Void System.Web.UI.MobileControls.ObjectListDataBindEventHandler(Object sender, Web.UI.MobileControls.ObjectListDataBindEventArgs e)Represents the method that will handle the event of an .
Void System.Web.UI.MobileControls.ObjectListSelectEventHandler(Object sender, Web.UI.MobileControls.ObjectListSelectEventArgs e)Represents the method that handles the event of an control.
Void System.Web.UI.MobileControls.ObjectListShowCommandsEventHandler(Object sender, Web.UI.MobileControls.ObjectListShowCommandsEventArgs e)Represents the method that will handle the event of an .

System.Web.Services

Void System.Web.Services.Protocols.InvokeCompletedEventHandler(Object sender, Web.Services.Protocols.InvokeCompletedEventArgs e)Represents an event handler that accepts the results of asynchronously invoked Web methods. This class cannot be inherited.

System.Windows.Forms

Void System.Windows.Forms.BindingCompleteEventHandler(Object sender, Windows.Forms.BindingCompleteEventArgs e)Represents the method that will handle the event in data-binding scenarios.
Void System.Windows.Forms.BindingManagerDataErrorEventHandler(Object sender, Windows.Forms.BindingManagerDataErrorEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.CacheVirtualItemsEventHandler(Object sender, Windows.Forms.CacheVirtualItemsEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ColumnClickEventHandler(Object sender, Windows.Forms.ColumnClickEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ColumnReorderedEventHandler(Object sender, Windows.Forms.ColumnReorderedEventArgs e)Represents the method that will handle the event of the control.
Void System.Windows.Forms.ColumnWidthChangedEventHandler(Object sender, Windows.Forms.ColumnWidthChangedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ColumnWidthChangingEventHandler(Object sender, Windows.Forms.ColumnWidthChangingEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ContentsResizedEventHandler(Object sender, Windows.Forms.ContentsResizedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ControlEventHandler(Object sender, Windows.Forms.ControlEventArgs e)Represents the method that will handle the and events of the class.
Void System.Windows.Forms.ConvertEventHandler(Object sender, Windows.Forms.ConvertEventArgs e)Represents the method that will handle the and events of a .
Void System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler(Object sender, Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs e)Represents the method that will handle the event of a control.
Void System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventHandler(Object sender, Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs e)Represents the method that will handle the event of a control.
Void System.Windows.Forms.DataGridViewAutoSizeModeEventHandler(Object sender, Windows.Forms.DataGridViewAutoSizeModeEventArgs e)Represents the method that will handle the or events of a .
Void System.Windows.Forms.DataGridViewBindingCompleteEventHandler(Object sender, Windows.Forms.DataGridViewBindingCompleteEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewCellCancelEventHandler(Object sender, Windows.Forms.DataGridViewCellCancelEventArgs e)Represents the method that will handle the and events of a .
Void System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler(Object sender, Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs e)Represents the method that will handle a event of a .
Void System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler(Object sender, Windows.Forms.DataGridViewCellErrorTextNeededEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewCellEventHandler(Object sender, Windows.Forms.DataGridViewCellEventArgs e)Represents the method that will handle events related to cell and row operations.
Void System.Windows.Forms.DataGridViewCellFormattingEventHandler(Object sender, Windows.Forms.DataGridViewCellFormattingEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewCellMouseEventHandler(Object sender, Windows.Forms.DataGridViewCellMouseEventArgs e)Represents the method that will handle mouse-related events raised by a .
Void System.Windows.Forms.DataGridViewCellPaintingEventHandler(Object sender, Windows.Forms.DataGridViewCellPaintingEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewCellParsingEventHandler(Object sender, Windows.Forms.DataGridViewCellParsingEventArgs e)Represents the method that will handle a event of a .
Void System.Windows.Forms.DataGridViewCellStateChangedEventHandler(Object sender, Windows.Forms.DataGridViewCellStateChangedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewCellStyleContentChangedEventHandler(Object sender, Windows.Forms.DataGridViewCellStyleContentChangedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler(Object sender, Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewCellValidatingEventHandler(Object sender, Windows.Forms.DataGridViewCellValidatingEventArgs e)Represents the method that will handle the event of a control.
Void System.Windows.Forms.DataGridViewCellValueEventHandler(Object sender, Windows.Forms.DataGridViewCellValueEventArgs e)Represents the method that will handle the event or event of a .
Void System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler(Object sender, Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewColumnEventHandler(Object sender, Windows.Forms.DataGridViewColumnEventArgs e)Represents the method that will handle column-related events of a .
Void System.Windows.Forms.DataGridViewColumnStateChangedEventHandler(Object sender, Windows.Forms.DataGridViewColumnStateChangedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewDataErrorEventHandler(Object sender, Windows.Forms.DataGridViewDataErrorEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(Object sender, Windows.Forms.DataGridViewEditingControlShowingEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewRowCancelEventHandler(Object sender, Windows.Forms.DataGridViewRowCancelEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventHandler(Object sender, Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewRowDividerDoubleClickEventHandler(Object sender, Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler(Object sender, Windows.Forms.DataGridViewRowErrorTextNeededEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewRowEventHandler(Object sender, Windows.Forms.DataGridViewRowEventArgs e)Represents the method that will handle row-related events of a .
Void System.Windows.Forms.DataGridViewRowHeightInfoNeededEventHandler(Object sender, Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs e)Represents the method that will handle an event of a control.
Void System.Windows.Forms.DataGridViewRowHeightInfoPushedEventHandler(Object sender, Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewRowPostPaintEventHandler(Object sender, Windows.Forms.DataGridViewRowPostPaintEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewRowPrePaintEventHandler(Object sender, Windows.Forms.DataGridViewRowPrePaintEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewRowsAddedEventHandler(Object sender, Windows.Forms.DataGridViewRowsAddedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewRowsRemovedEventHandler(Object sender, Windows.Forms.DataGridViewRowsRemovedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewRowStateChangedEventHandler(Object sender, Windows.Forms.DataGridViewRowStateChangedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DataGridViewSortCompareEventHandler(Object sender, Windows.Forms.DataGridViewSortCompareEventArgs e)Represents the method that will handle the event of a control.
Void System.Windows.Forms.DateBoldEventHandler(Object sender, Windows.Forms.DateBoldEventArgs e)Represents the method that will handle an internal event of the control.
Void System.Windows.Forms.DateRangeEventHandler(Object sender, Windows.Forms.DateRangeEventArgs e)Represents the method that will handle the or event of a .
Void System.Windows.Forms.DragEventHandler(Object sender, Windows.Forms.DragEventArgs e)Represents the method that will handle the , , or event of a .
Void System.Windows.Forms.DrawItemEventHandler(Object sender, Windows.Forms.DrawItemEventArgs e)Represents the method that will handle the DrawItem event of a , , , or control.
Void System.Windows.Forms.DrawListViewColumnHeaderEventHandler(Object sender, Windows.Forms.DrawListViewColumnHeaderEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DrawListViewItemEventHandler(Object sender, Windows.Forms.DrawListViewItemEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DrawListViewSubItemEventHandler(Object sender, Windows.Forms.DrawListViewSubItemEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DrawToolTipEventHandler(Object sender, Windows.Forms.DrawToolTipEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.DrawTreeNodeEventHandler(Object sender, Windows.Forms.DrawTreeNodeEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.FormClosedEventHandler(Object sender, Windows.Forms.FormClosedEventArgs e)Represents the method that handles a event.
Void System.Windows.Forms.FormClosingEventHandler(Object sender, Windows.Forms.FormClosingEventArgs e)Represents the method that handles a event.
Void System.Windows.Forms.GiveFeedbackEventHandler(Object sender, Windows.Forms.GiveFeedbackEventArgs e)Represents the method that handles the event of a .
Void System.Windows.Forms.HelpEventHandler(Object sender, Windows.Forms.HelpEventArgs hlpevent)Represents the method that will handle the event of a .
Void System.Windows.Forms.HtmlElementErrorEventHandler(Object sender, Windows.Forms.HtmlElementErrorEventArgs e)Represents the method that will handle the event of an .
Void System.Windows.Forms.HtmlElementEventHandler(Object sender, Windows.Forms.HtmlElementEventArgs e)Represents the method that will handle the Click, MouseDown and related events on , , and .
Void System.Windows.Forms.InputLanguageChangedEventHandler(Object sender, Windows.Forms.InputLanguageChangedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.InputLanguageChangingEventHandler(Object sender, Windows.Forms.InputLanguageChangingEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.InvalidateEventHandler(Object sender, Windows.Forms.InvalidateEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ItemChangedEventHandler(Object sender, Windows.Forms.ItemChangedEventArgs e)Represents the method that will handle the event of the class.
Void System.Windows.Forms.ItemCheckedEventHandler(Object sender, Windows.Forms.ItemCheckedEventArgs e)Represents the method that will handle the event of a control.
Void System.Windows.Forms.ItemCheckEventHandler(Object sender, Windows.Forms.ItemCheckEventArgs e)Represents the method that will handle the ItemCheck event of a or control.
Void System.Windows.Forms.ItemDragEventHandler(Object sender, Windows.Forms.ItemDragEventArgs e)Represents the method that will handle the event of a or control.
Void System.Windows.Forms.KeyEventHandler(Object sender, Windows.Forms.KeyEventArgs e)Represents the method that will handle the or event of a .
Void System.Windows.Forms.KeyPressEventHandler(Object sender, Windows.Forms.KeyPressEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.LabelEditEventHandler(Object sender, Windows.Forms.LabelEditEventArgs e)Represents the method that handles the and events.
Void System.Windows.Forms.LayoutEventHandler(Object sender, Windows.Forms.LayoutEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.LinkClickedEventHandler(Object sender, Windows.Forms.LinkClickedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.LinkLabelLinkClickedEventHandler(Object sender, Windows.Forms.LinkLabelLinkClickedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ListControlConvertEventHandler(Object sender, Windows.Forms.ListControlConvertEventArgs e)Represents the method that will handle converting a .
Void System.Windows.Forms.ListViewItemMouseHoverEventHandler(Object sender, Windows.Forms.ListViewItemMouseHoverEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ListViewItemSelectionChangedEventHandler(Object sender, Windows.Forms.ListViewItemSelectionChangedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler(Object sender, Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.MaskInputRejectedEventHandler(Object sender, Windows.Forms.MaskInputRejectedEventArgs e)Represents the method that will handle the event of a control.
Void System.Windows.Forms.MeasureItemEventHandler(Object sender, Windows.Forms.MeasureItemEventArgs e)Represents the method that will handle the MeasureItem event of the , , , or controls.
Void System.Windows.Forms.MethodInvoker()Represents a delegate that can execute any method in managed code that is declared void and takes no parameters.
Void System.Windows.Forms.MouseEventHandler(Object sender, Windows.Forms.MouseEventArgs e)Represents the method that will handle the MouseDown, MouseUp, or MouseMove event of a form, control, or other component.
Void System.Windows.Forms.NavigateEventHandler(Object sender, Windows.Forms.NavigateEventArgs ne)Represents the method that will handle the event of a .
Void System.Windows.Forms.NodeLabelEditEventHandler(Object sender, Windows.Forms.NodeLabelEditEventArgs e)Represents the method that will handle the and events of a control.
Void System.Windows.Forms.PaintEventHandler(Object sender, Windows.Forms.PaintEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.PopupEventHandler(Object sender, Windows.Forms.PopupEventArgs e)Represents the method that handles the event of the class.
Void System.Windows.Forms.PreviewKeyDownEventHandler(Object sender, Windows.Forms.PreviewKeyDownEventArgs e)Represents the method that will handle the event for a control.
Void System.Windows.Forms.PropertyTabChangedEventHandler(Object s, Windows.Forms.PropertyTabChangedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.PropertyValueChangedEventHandler(Object s, Windows.Forms.PropertyValueChangedEventArgs e)The event handler class that is invoked when a property in the grid is modified by the user.
Void System.Windows.Forms.QueryAccessibilityHelpEventHandler(Object sender, Windows.Forms.QueryAccessibilityHelpEventArgs e)Represents the method that will handle the event of a control.
Void System.Windows.Forms.QueryContinueDragEventHandler(Object sender, Windows.Forms.QueryContinueDragEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.QuestionEventHandler(Object sender, Windows.Forms.QuestionEventArgs e)Represents the method that will handle the event or the event of a .
Void System.Windows.Forms.RetrieveVirtualItemEventHandler(Object sender, Windows.Forms.RetrieveVirtualItemEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ScrollEventHandler(Object sender, Windows.Forms.ScrollEventArgs e)Represents the method that handles the Scroll event of a , , , or .
Void System.Windows.Forms.SearchForVirtualItemEventHandler(Object sender, Windows.Forms.SearchForVirtualItemEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.SelectedGridItemChangedEventHandler(Object sender, Windows.Forms.SelectedGridItemChangedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.SplitterCancelEventHandler(Object sender, Windows.Forms.SplitterCancelEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.SplitterEventHandler(Object sender, Windows.Forms.SplitterEventArgs e)Represents the method that will handle the and events of a .
Void System.Windows.Forms.StatusBarDrawItemEventHandler(Object sender, Windows.Forms.StatusBarDrawItemEventArgs sbdevent)Represents the method that will handle the event of a .
Void System.Windows.Forms.StatusBarPanelClickEventHandler(Object sender, Windows.Forms.StatusBarPanelClickEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.TabControlCancelEventHandler(Object sender, Windows.Forms.TabControlCancelEventArgs e)Represents the method that will handle the or event of a control.
Void System.Windows.Forms.TabControlEventHandler(Object sender, Windows.Forms.TabControlEventArgs e)Represents the method that will handle the or event of a control.
Void System.Windows.Forms.TableLayoutCellPaintEventHandler(Object sender, Windows.Forms.TableLayoutCellPaintEventArgs e)Represents the method that will handle the event.
Void System.Windows.Forms.ToolBarButtonClickEventHandler(Object sender, Windows.Forms.ToolBarButtonClickEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ToolStripArrowRenderEventHandler(Object sender, Windows.Forms.ToolStripArrowRenderEventArgs e)Represents the method that will handle the event of a . This class cannot be inherited.
Void System.Windows.Forms.ToolStripContentPanelRenderEventHandler(Object sender, Windows.Forms.ToolStripContentPanelRenderEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ToolStripDropDownClosedEventHandler(Object sender, Windows.Forms.ToolStripDropDownClosedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ToolStripDropDownClosingEventHandler(Object sender, Windows.Forms.ToolStripDropDownClosingEventArgs e)Represents the method that handles the event of a .
Void System.Windows.Forms.ToolStripGripRenderEventHandler(Object sender, Windows.Forms.ToolStripGripRenderEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ToolStripItemClickedEventHandler(Object sender, Windows.Forms.ToolStripItemClickedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ToolStripItemEventHandler(Object sender, Windows.Forms.ToolStripItemEventArgs e)Represents the method that will handle events for a .
Void System.Windows.Forms.ToolStripItemImageRenderEventHandler(Object sender, Windows.Forms.ToolStripItemImageRenderEventArgs e)Represents the method that will handle the event or event of a .
Void System.Windows.Forms.ToolStripItemRenderEventHandler(Object sender, Windows.Forms.ToolStripItemRenderEventArgs e)Represents the method that handles the events that render the background of objects derived from in the class.
Void System.Windows.Forms.ToolStripItemTextRenderEventHandler(Object sender, Windows.Forms.ToolStripItemTextRenderEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.ToolStripPanelRenderEventHandler(Object sender, Windows.Forms.ToolStripPanelRenderEventArgs e)Represents the method that will handle paint events.
Void System.Windows.Forms.ToolStripRenderEventHandler(Object sender, Windows.Forms.ToolStripRenderEventArgs e)Represents the method that will handle the event or the event of a .
Void System.Windows.Forms.ToolStripSeparatorRenderEventHandler(Object sender, Windows.Forms.ToolStripSeparatorRenderEventArgs e)Represents the method that will handle the event of a class.
Void System.Windows.Forms.TreeNodeMouseClickEventHandler(Object sender, Windows.Forms.TreeNodeMouseClickEventArgs e)Represents the method that will handle the and events of a .
Void System.Windows.Forms.TreeNodeMouseHoverEventHandler(Object sender, Windows.Forms.TreeNodeMouseHoverEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Forms.TreeViewCancelEventHandler(Object sender, Windows.Forms.TreeViewCancelEventArgs e)Represents the method that will handle the , , , or event of a .
Void System.Windows.Forms.TreeViewEventHandler(Object sender, Windows.Forms.TreeViewEventArgs e)Represents the method that will handle the , , , or event of a .
Void System.Windows.Forms.TypeValidationEventHandler(Object sender, Windows.Forms.TypeValidationEventArgs e)Represents the method that will handle the event of the control.
Void System.Windows.Forms.UICuesEventHandler(Object sender, Windows.Forms.UICuesEventArgs e)Represents a method that will handle the event of a .
Void System.Windows.Forms.UpDownEventHandler(Object source, Windows.Forms.UpDownEventArgs e)Represents the method that will handle an event for an internal class.
Void System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(Object sender, Windows.Forms.WebBrowserDocumentCompletedEventArgs e)Represents the method that will handle the event of a control.
Void System.Windows.Forms.WebBrowserNavigatedEventHandler(Object sender, Windows.Forms.WebBrowserNavigatedEventArgs e)Represents the method that will handle the event of a control.
Void System.Windows.Forms.WebBrowserNavigatingEventHandler(Object sender, Windows.Forms.WebBrowserNavigatingEventArgs e)Represents the method that will handle the event of a control.
Void System.Windows.Forms.WebBrowserProgressChangedEventHandler(Object sender, Windows.Forms.WebBrowserProgressChangedEventArgs e)Represents the method that will handle the event of a control.

System.Workflow.ComponentModel

Void System.Workflow.ComponentModel.Design.ConnectorEventHandler(Object sender, Workflow.ComponentModel.Design.ConnectorEventArgs e)Represents the method that will handle the , , and events of a .
Object System.Workflow.ComponentModel.GetValueOverride(Workflow.ComponentModel.DependencyObject d)Allows a custom override of the logic associated with a dependency property that is defined on a dependency object.
Void System.Workflow.ComponentModel.SetValueOverride(Workflow.ComponentModel.DependencyObject d, Object value)Allows a custom override of the logic associated with a dependency property that is defined on a dependency object.

System.Workflow.Runtime

Void System.Workflow.Runtime.DebugEngine.DebugEngineCallback()References a callback method that is invoked by the workflow expression evaluation component.

System.Xml

Void System.Xml.Serialization.UnreferencedObjectEventHandler(Object sender, Xml.Serialization.UnreferencedObjectEventArgs e)Represents the method that handles the event of an .
Void System.Xml.Schema.ValidationEventHandler(Object sender, Xml.Schema.ValidationEventArgs e)Represents the callback method that will handle XML schema validation events and the .
Void System.Xml.Serialization.XmlAttributeEventHandler(Object sender, Xml.Serialization.XmlAttributeEventArgs e)Represents the method that handles the
Void System.Xml.Serialization.XmlElementEventHandler(Object sender, Xml.Serialization.XmlElementEventArgs e)Represents the method that handles the event of an .
Void System.Xml.XmlNodeChangedEventHandler(Object sender, Xml.XmlNodeChangedEventArgs e)Represents the method that handles , , , , and events.
Void System.Xml.Serialization.XmlNodeEventHandler(Object sender, Xml.Serialization.XmlNodeEventArgs e)Represents the method that handles the event of an .
Void System.Xml.Serialization.XmlSerializationCollectionFixupCallback(Object collection, Object collectionItems)Delegate used by the class for deserialization of SOAP-encoded XML data types that map to collections or enumerations.
Void System.Xml.Serialization.XmlSerializationFixupCallback(Object fixup)Delegate used by the class for deserialization of SOAP-encoded XML data.
Object System.Xml.Serialization.XmlSerializationReadCallback()Delegate used by the class for deserialization of types from SOAP-encoded, non-root XML data.
Void System.Xml.Serialization.XmlSerializationWriteCallback(Object o)Delegate that is used by the class for serialization of types from SOAP-encoded, non-root XML data.
Object System.Xml.Schema.XmlValueGetter()A delegate used by the class to pass attribute, text, and white space values as a Common Language Runtime (CLR) type compatible with the XML Schema Definition Language (XSD) type of the attribute, text, or white space.
Void System.Xml.Xsl.XsltMessageEncounteredEventHandler(Object sender, Xml.Xsl.XsltMessageEncounteredEventArgs e)Represents the method that will handle the event.

PresentationCore

Void System.Windows.Input.AccessKeyPressedEventHandler(Object sender, Windows.Input.AccessKeyPressedEventArgs e)Represents the method that will handle the  attached event.
Void System.Windows.AutoResizedEventHandler(Object sender, Windows.AutoResizedEventArgs e)Represents the method that will handle the event raised by .
Void System.Windows.Input.CanExecuteRoutedEventHandler(Object sender, Windows.Input.CanExecuteRoutedEventArgs e)Represents the method that will handle the event.
Void System.Windows.DataObjectCopyingEventHandler(Object sender, Windows.DataObjectCopyingEventArgs e)Represents a method that will handle the  attached event.
Void System.Windows.DataObjectPastingEventHandler(Object sender, Windows.DataObjectPastingEventArgs e)Represents a method that will handle the  attached event.
Void System.Windows.DataObjectSettingDataEventHandler(Object sender, Windows.DataObjectSettingDataEventArgs e)Represents a method that will handle the  attached event.
Void System.Windows.DragEventHandler(Object sender, Windows.DragEventArgs e)Represents a method that will handle drag-and-drop routed events, for example .
Void System.Windows.Ink.DrawingAttributesReplacedEventHandler(Object sender, Windows.Ink.DrawingAttributesReplacedEventArgs e)Represents the method that handles the event of an .
Void System.Windows.Input.ExecutedRoutedEventHandler(Object sender, Windows.Input.ExecutedRoutedEventArgs e)Represents the method that will handle the  and  routed events, as well as related attached events.
Void System.Windows.Documents.GetPageCompletedEventHandler(Object sender, Windows.Documents.GetPageCompletedEventArgs e)Represents the method that will handle the event of a or other classes implementing .
Void System.Windows.Documents.GetPageNumberCompletedEventHandler(Object sender, Windows.Documents.GetPageNumberCompletedEventArgs e)Represents the method that will handle the event of a , or .
Void System.Windows.GiveFeedbackEventHandler(Object sender, Windows.GiveFeedbackEventArgs e)Represents a method that will handle the feedback routed event from in-process drag-and-drop operations, for instance .
Windows.Media.HitTestFilterBehavior System.Windows.Media.HitTestFilterCallback(Windows.DependencyObject potentialHitTestTarget)Represents the callback method that specifies parts of the visual tree to omit from hit test processing
Windows.Media.HitTestResultBehavior System.Windows.Media.HitTestResultCallback(Windows.Media.HitTestResult result)Represents a callback that is used to customize hit testing. WPF invokes the to report hit test intersections to the user.
IntPtr System.Windows.Interop.HwndSourceHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled) Represents the method that handles Win32 window messages. 
Void System.Windows.Input.InputEventHandler(Object sender, Windows.Input.InputEventArgs e)Represents the method that handles input related routed events.
Void System.Windows.Input.InputLanguageEventHandler(Object sender, Windows.Input.InputLanguageEventArgs e)Represents the method that will handle the and events.
Void System.Windows.Input.InputMethodStateChangedEventHandler(Object sender, Windows.Input.InputMethodStateChangedEventArgs e)Represents the method that will handle the event.
Void System.Windows.Input.KeyboardEventHandler(Object sender, Windows.Input.KeyboardEventArgs e)Represents the method that will handle keyboard-related routed events.
Void System.Windows.Input.KeyboardFocusChangedEventHandler(Object sender, Windows.Input.KeyboardFocusChangedEventArgs e)Represents the method that will handle the and  routed events, as well as related attached and Preview events.
Void System.Windows.Input.KeyboardInputProviderAcquireFocusEventHandler(Object sender, Windows.Input.KeyboardInputProviderAcquireFocusEventArgs e)Represents the method that will handle the event
Void System.Windows.Input.KeyEventHandler(Object sender, Windows.Input.KeyEventArgs e)Represents the method that will handle the and  routed events, as well as related attached and Preview events.
Void System.Windows.Ink.LassoSelectionChangedEventHandler(Object sender, Windows.Ink.LassoSelectionChangedEventArgs e)Represents the method that handles the event of a .
Void System.Windows.Input.MouseButtonEventHandler(Object sender, Windows.Input.MouseButtonEventArgs e)Represents the method that will handle mouse button related routed events, for example .
Void System.Windows.Input.MouseEventHandler(Object sender, Windows.Input.MouseEventArgs e)Represents the method that will handle mouse related routed events that do not specifically involve mouse buttons or the mouse wheel; for example, .
Void System.Windows.Input.MouseWheelEventHandler(Object sender, Windows.Input.MouseWheelEventArgs e)Represents the method that will handle the and routed events, as well as related attached and Preview events.
Void System.Windows.Input.NotifyInputEventHandler(Object sender, Windows.Input.NotifyInputEventArgs e)Represents the method that will handle and events.
Void System.Windows.Documents.PagesChangedEventHandler(Object sender, Windows.Documents.PagesChangedEventArgs e)Represents the method that will handle the event.
Void System.Windows.Documents.PaginationProgressEventHandler(Object sender, Windows.Documents.PaginationProgressEventArgs e)Represents the method that will handle the event.
Void System.Windows.Input.PreProcessInputEventHandler(Object sender, Windows.Input.PreProcessInputEventArgs e)Represents the method that will handle the event.
Void System.Windows.Input.ProcessInputEventHandler(Object sender, Windows.Input.ProcessInputEventArgs e)Represents the method that will handle the event.
Void System.Windows.Ink.PropertyDataChangedEventHandler(Object sender, Windows.Ink.PropertyDataChangedEventArgs e)Represents the method that handles the PropertyDataChanged event.
Void System.Windows.QueryContinueDragEventHandler(Object sender, Windows.QueryContinueDragEventArgs e)Represents a method that will handle the routed events that enables a drag-and-drop operation to be canceled by the drag source, for example .
Void System.Windows.Input.QueryCursorEventHandler(Object sender, Windows.Input.QueryCursorEventArgs e)Represents the method that will handle the and events, as well as the attached event.
Void System.Windows.RoutedEventHandler(Object sender, Windows.RoutedEventArgs e)Represents the method that will handle various routed events that do not have specific event data beyond the data that is common for all routed events.
Void System.Windows.SourceChangedEventHandler(Object sender, Windows.SourceChangedEventArgs e)Represents the method that will handle the "SourceChanged" event on specific listener elements.
Void System.Windows.Ink.StrokeCollectionChangedEventHandler(Object sender, Windows.Ink.StrokeCollectionChangedEventArgs e)Represents the method that handles the event of a .
Void System.Windows.Ink.StrokeHitEventHandler(Object sender, Windows.Ink.StrokeHitEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Input.StylusButtonEventHandler(Object sender, Windows.Input.StylusButtonEventArgs e)Represents the method that handles either the event or the event of a .
Void System.Windows.Input.StylusDownEventHandler(Object sender, Windows.Input.StylusDownEventArgs e)Represents the method that handles the event, as well as several variations, including the corresponding Preview event. Also re-exposes the event in the base element classes.
Void System.Windows.Input.StylusEventHandler(Object sender, Windows.Input.StylusEventArgs e)Represents the method that handles a stylus event for a class that the implements the interface.
Void System.Windows.Ink.StylusPointsReplacedEventHandler(Object sender, Windows.Ink.StylusPointsReplacedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Input.StylusSystemGestureEventHandler(Object sender, Windows.Input.StylusSystemGestureEventArgs e)Represents the method that handles the event of a .
Void System.Windows.Input.TextCompositionEventHandler(Object sender, Windows.Input.TextCompositionEventArgs e)Represents the method that will handle the routed events related to the and classes, for example .
Void System.Windows.Input.TouchFrameEventHandler(Object sender, Windows.Input.TouchFrameEventArgs e)Represents the method that will handle the event of a .

PresentationFramework

Void System.Windows.Annotations.AnnotationAuthorChangedEventHandler(Object sender, Windows.Annotations.AnnotationAuthorChangedEventArgs e)Represents the method that handles the event raised by the class.
Void System.Windows.Annotations.AnnotationResourceChangedEventHandler(Object sender, Windows.Annotations.AnnotationResourceChangedEventArgs e)Represents the method that handles the or events raised by the class.
Void System.Windows.Markup.Localizer.BamlLocalizerErrorNotifyEventHandler(Object sender, Windows.Markup.Localizer.BamlLocalizerErrorNotifyEventArgs e)Represents the method that will handle the event.
Void System.Windows.Controls.CleanUpVirtualizedItemEventHandler(Object sender, Windows.Controls.CleanUpVirtualizedItemEventArgs e)Represents the method that handles the  attached events.
Void System.Windows.Controls.ContextMenuEventHandler(Object sender, Windows.Controls.ContextMenuEventArgs e)Represents the method that will handle the and  routed events, as well as equivalent events.
Windows.Controls.Primitives.CustomPopupPlacement[] System.Windows.Controls.Primitives.CustomPopupPlacementCallback(Windows.Size popupSize, Windows.Size targetSize, Windows.Point offset)Represents a method that provides custom positioning for a control.
Void System.Windows.Controls.DataGridSortingEventHandler(Object sender, Windows.Controls.DataGridSortingEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Controls.Primitives.DragCompletedEventHandler(Object sender, Windows.Controls.Primitives.DragCompletedEventArgs e)Represents a method that will handle the  routed event of a control.
Void System.Windows.Controls.Primitives.DragDeltaEventHandler(Object sender, Windows.Controls.Primitives.DragDeltaEventArgs e)Represents a method that will handle the  routed event of a control.
Void System.Windows.Controls.Primitives.DragStartedEventHandler(Object sender, Windows.Controls.Primitives.DragStartedEventArgs e)Represents the method that will handle the  routed event of a control.
Void System.Windows.ExitEventHandler(Object sender, Windows.ExitEventArgs e)Represents the method that handles the event.
Void System.Windows.Data.FilterEventHandler(Object sender, Windows.Data.FilterEventArgs e)Represents the method that will handle the event.
Void System.Windows.Navigation.FragmentNavigationEventHandler(Object sender, Windows.Navigation.FragmentNavigationEventArgs e)Represents the method that will handle FragmentNavigation events.
Void System.Windows.Documents.GetPageRootCompletedEventHandler(Object sender, Windows.Documents.GetPageRootCompletedEventArgs e)Represents the method that will handle the event of the class.
ComponentModel.GroupDescription System.Windows.Data.GroupDescriptionSelectorCallback(Windows.Data.CollectionViewGroup group, Int32 level)Represents a method that is used to provide custom logic to select the based on the parent group and its level.
Windows.Controls.GroupStyle System.Windows.Controls.GroupStyleSelector(Windows.Data.CollectionViewGroup group, Int32 level)Delegate used to select the group style as a function of the parent group and its level.
Void System.Windows.Controls.InitializingNewItemEventHandler(Object sender, Windows.Controls.InitializingNewItemEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Controls.InkCanvasGestureEventHandler(Object sender, Windows.Controls.InkCanvasGestureEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Controls.InkCanvasSelectionChangingEventHandler(Object sender, Windows.Controls.InkCanvasSelectionChangingEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Controls.InkCanvasSelectionEditingEventHandler(Object sender, Windows.Controls.InkCanvasSelectionEditingEventArgs e)Represents the method that handles two events raised when changes occur on an : the event, or the event.
Void System.Windows.Controls.InkCanvasStrokeCollectedEventHandler(Object sender, Windows.Controls.InkCanvasStrokeCollectedEventArgs e)Represents the method that will handle the event of an .
Void System.Windows.Controls.InkCanvasStrokeErasingEventHandler(Object sender, Windows.Controls.InkCanvasStrokeErasingEventArgs e)Represents the method that handles the event for an .
Void System.Windows.Controls.InkCanvasStrokesReplacedEventHandler(Object sender, Windows.Controls.InkCanvasStrokesReplacedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Controls.Primitives.ItemsChangedEventHandler(Object sender, Windows.Controls.Primitives.ItemsChangedEventArgs e)Represents the method that will handle the event.
Void System.Windows.Navigation.LoadCompletedEventHandler(Object sender, Windows.Navigation.NavigationEventArgs e)Represents the method that will handle LoadCompleted events.
Void System.Windows.Navigation.NavigatedEventHandler(Object sender, Windows.Navigation.NavigationEventArgs e)Represents the method that will handle Navigated events.
Void System.Windows.Navigation.NavigatingCancelEventHandler(Object sender, Windows.Navigation.NavigatingCancelEventArgs e)Represents the method that will handle Navigating events.
Void System.Windows.Navigation.NavigationFailedEventHandler(Object sender, Windows.Navigation.NavigationFailedEventArgs e)Represents the method that will handle NavigationFailed events.
Void System.Windows.Navigation.NavigationProgressEventHandler(Object sender, Windows.Navigation.NavigationProgressEventArgs e)Represents the method that will handle NavigationProgress events.
Void System.Windows.Navigation.NavigationStoppedEventHandler(Object sender, Windows.Navigation.NavigationEventArgs e)Represents the method that will handle NavigationStopped events.
Void System.Windows.RequestBringIntoViewEventHandler(Object sender, Windows.RequestBringIntoViewEventArgs e)Represents the method that will handle the  routed event.
Void System.Windows.Navigation.RequestNavigateEventHandler(Object sender, Windows.Navigation.RequestNavigateEventArgs e)Represents the method that will handle the  routed event of the class.
Void System.Windows.Navigation.ReturnEventHandler`1(Object sender, System.Windows.Navigation.ReturnEventArgs`1[T] e)Represents the method that will handle the event of the class.
Void System.Windows.RoutedPropertyChangedEventHandler`1(Object sender, System.Windows.RoutedPropertyChangedEventArgs`1[T] e)Represents methods that will handle various routed events that track property value changes.
Void System.Windows.Controls.ScrollChangedEventHandler(Object sender, Windows.Controls.ScrollChangedEventArgs e)Represents the method that will handle the  routed event.
Void System.Windows.Controls.Primitives.ScrollEventHandler(Object sender, Windows.Controls.Primitives.ScrollEventArgs e)Represents the method that will handle the  routed event that occurs when the of a moves.
Void System.Windows.Controls.SelectedCellsChangedEventHandler(Object sender, Windows.Controls.SelectedCellsChangedEventArgs e)Represents the method that will handle the event of a .
Void System.Windows.Controls.SelectionChangedEventHandler(Object sender, Windows.Controls.SelectionChangedEventArgs e)Represents the method that will handle the  routed event.
Void System.Windows.SessionEndingCancelEventHandler(Object sender, Windows.SessionEndingCancelEventArgs e)Represents the method that handles the event.
Void System.Windows.SizeChangedEventHandler(Object sender, Windows.SizeChangedEventArgs e)Represents the method that will handle the  routed event.
Void System.Windows.StartupEventHandler(Object sender, Windows.StartupEventArgs e)Represents the method that handles the event.
Void System.Windows.Annotations.Storage.StoreContentChangedEventHandler(Object sender, Windows.Annotations.Storage.StoreContentChangedEventArgs e)Represents the method that handles the event raised by the class.
Void System.Windows.Controls.TextChangedEventHandler(Object sender, Windows.Controls.TextChangedEventArgs e)Represents the method that will handle the  routed event.
Void System.Windows.Controls.ToolTipEventHandler(Object sender, Windows.Controls.ToolTipEventArgs e)Represents the method that will handle routed event that occur when a tooltip opens and closes.
Object System.Windows.Data.UpdateSourceExceptionFilterCallback(Object bindExpression, Exception exception)Represents the method that handles exceptions that are thrown during the update of the binding source value. This must be used with the .
Void System.Windows.Documents.Serialization.WritingCancelledEventHandler(Object sender, Windows.Documents.Serialization.WritingCancelledEventArgs e)Represents a method that will handle the event.
Void System.Windows.Documents.Serialization.WritingCompletedEventHandler(Object sender, Windows.Documents.Serialization.WritingCompletedEventArgs e)Represents a method that handles the event of the class.
Void System.Windows.Documents.Serialization.WritingPrintTicketRequiredEventHandler(Object sender, Windows.Documents.Serialization.WritingPrintTicketRequiredEventArgs e)Represents the method that handles the event of an .
Void System.Windows.Documents.Serialization.WritingProgressChangedEventHandler(Object sender, Windows.Documents.Serialization.WritingProgressChangedEventArgs e)Represents a method that will handle the event of an .

ReachFramework

Void System.Windows.Xps.Packaging.PackagingProgressEventHandler(Object sender, Windows.Xps.Packaging.PackagingProgressEventArgs e)Represents the method that handles the .
Void System.Windows.Xps.Serialization.XpsSerializationCompletedEventHandler(Object sender, Windows.Xps.Serialization.XpsSerializationCompletedEventArgs e)Represents the method that handles the event of an .
Void System.Windows.Xps.Serialization.XpsSerializationPrintTicketRequiredEventHandler(Object sender, Windows.Xps.Serialization.XpsSerializationPrintTicketRequiredEventArgs e)Represents the method that handles the event of an .
Void System.Windows.Xps.Serialization.XpsSerializationProgressChangedEventHandler(Object sender, Windows.Xps.Serialization.XpsSerializationProgressChangedEventArgs e)Represents the method that handles the event of an .

System.Runtime.Serialization

Void System.Xml.OnXmlDictionaryReaderClose(Xml.XmlDictionaryReader reader)delegate for a callback method when closing the reader.

System.ServiceModel

Void System.ServiceModel.Dispatcher.InstanceContextIdleCallback(ServiceModel.InstanceContext instanceContext)Represents the method that is called when an object has finished processing.
Void System.ServiceModel.Security.Tokens.IssuedSecurityTokenHandler(IdentityModel.Tokens.SecurityToken issuedToken, ServiceModel.EndpointAddress tokenRequestor)This delegate points to a method that when implemented will be called by the Authenticators before the token is issued to the client.
Void System.ServiceModel.Security.Tokens.RenewedSecurityTokenHandler(IdentityModel.Tokens.SecurityToken newSecurityToken, IdentityModel.Tokens.SecurityToken oldSecurityToken)The delegate when implemented is called before a renewed token is returned to the client.

System.Workflow.ComponentModel

Void System.Workflow.ComponentModel.Design.ConnectorEventHandler(Object sender, Workflow.ComponentModel.Design.ConnectorEventArgs e)Represents the method that will handle the , , and events of a .
Object System.Workflow.ComponentModel.GetValueOverride(Workflow.ComponentModel.DependencyObject d)Allows a custom override of the logic associated with a dependency property that is defined on a dependency object.
Void System.Workflow.ComponentModel.SetValueOverride(Workflow.ComponentModel.DependencyObject d, Object value)Allows a custom override of the logic associated with a dependency property that is defined on a dependency object.

System.Workflow.Runtime

Void System.Workflow.Runtime.DebugEngine.DebugEngineCallback()References a callback method that is invoked by the workflow expression evaluation component.

UIAutomationClient

Void System.Windows.Automation.AutomationFocusChangedEventHandler(Object sender, Windows.Automation.AutomationFocusChangedEventArgs e)Represents the method implemented by the UI Automation client application to handle the event raised by a UI Automation provider when the focus has changed.
Windows.Automation.Provider.IRawElementProviderSimple System.Windows.Automation.ClientSideProviderFactoryCallback(IntPtr hwnd, Int32 idChild, Int32 idObject)Represents the method that creates a client-side UI Automation provider for a window.

UIAutomationTypes

Void System.Windows.Automation.AutomationEventHandler(Object sender, Windows.Automation.AutomationEventArgs e)Represents the method implemented by the UI Automation client application to handle an event raised by a UI Automation provider.
Void System.Windows.Automation.AutomationPropertyChangedEventHandler(Object sender, Windows.Automation.AutomationPropertyChangedEventArgs e)Represents the method implemented by the UI Automation client application to handle the event raised by a UI Automation provider when a property has changed.
Void System.Windows.Automation.StructureChangedEventHandler(Object sender, Windows.Automation.StructureChangedEventArgs e)Represents the method implemented by the client application to handle the event raised when the UI Automation tree structure has changed.

WindowsBase

Object System.Windows.CoerceValueCallback(Windows.DependencyObject d, Object baseValue)Provides a template for a method that is called whenever a dependency property value is being re-evaluated, or coercion is specifically requested.
Void System.ComponentModel.CurrentChangingEventHandler(Object sender, ComponentModel.CurrentChangingEventArgs e)Represents the method that handles the event.
Void System.Windows.DependencyPropertyChangedEventHandler(Object sender, Windows.DependencyPropertyChangedEventArgs e)Represents the method that will handle events raised when a is changed on a particular implementation.
Void System.Windows.Threading.DispatcherHookEventHandler(Object sender, Windows.Threading.DispatcherHookEventArgs e)Represents the method that will handle related events.
Object System.Windows.Threading.DispatcherOperationCallback(Object arg)Represents a delegate to use for dispatcher operations.
Void System.Windows.Threading.DispatcherUnhandledExceptionEventHandler(Object sender, Windows.Threading.DispatcherUnhandledExceptionEventArgs e)Represents the method that will handle the event.
Void System.Windows.Threading.DispatcherUnhandledExceptionFilterEventHandler(Object sender, Windows.Threading.DispatcherUnhandledExceptionFilterEventArgs e)Represents the method that will handle the event.
Void System.IO.Packaging.InvalidSignatureEventHandler(Object sender, IO.Packaging.SignatureVerificationEventArgs e)Represents the method that handles the that is raised when detects an invalid signature.
Void System.Windows.PropertyChangedCallback(Windows.DependencyObject d, Windows.DependencyPropertyChangedEventArgs e)Represents the callback that is invoked when the effective property value of a dependency property changes.
Void System.Windows.Interop.ThreadMessageEventHandler(Windows.Interop.MSG& msg, Boolean& handled)Represents the method that handles the and events.
Boolean System.Windows.ValidateValueCallback(Object value)Represents a method used as a callback that validates the effective value of a dependency property.

WindowsFormsIntegration

Void System.Windows.Forms.Integration.PropertyTranslator(Object host, String propertyName, Object value)Provides a translation function for a mapped property of the host control.

Microsoft.Build.Engine

Void Microsoft.Build.BuildEngine.ColorResetter() Defines the type of delegate used to reset the console color.
Void Microsoft.Build.BuildEngine.ColorSetter(ConsoleColor color) Defines the type of delegate used to set the console color.
Void Microsoft.Build.BuildEngine.WriteHandler(String message) Represents the method that writes strings to a certain location, such as the console window or a window in an integrated development environment.

Microsoft.Build.Framework

Void Microsoft.Build.Framework.AnyEventHandler(Object sender, Microsoft.Build.Framework.BuildEventArgs e) Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.BuildErrorEventHandler(Object sender, Microsoft.Build.Framework.BuildErrorEventArgs e) Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.BuildFinishedEventHandler(Object sender, Microsoft.Build.Framework.BuildFinishedEventArgs e) Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.BuildMessageEventHandler(Object sender, Microsoft.Build.Framework.BuildMessageEventArgs e) Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.BuildStartedEventHandler(Object sender, Microsoft.Build.Framework.BuildStartedEventArgs e) Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.BuildStatusEventHandler(Object sender, Microsoft.Build.Framework.BuildStatusEventArgs e) Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.BuildWarningEventHandler(Object sender, Microsoft.Build.Framework.BuildWarningEventArgs e) Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.CustomBuildEventHandler(Object sender, Microsoft.Build.Framework.CustomBuildEventArgs e) Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.ProjectFinishedEventHandler(Object sender, Microsoft.Build.Framework.ProjectFinishedEventArgs e) Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.ProjectStartedEventHandler(Object sender, Microsoft.Build.Framework.ProjectStartedEventArgs e) Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.TargetFinishedEventHandler(Object sender, Microsoft.Build.Framework.TargetFinishedEventArgs e) Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.TargetStartedEventHandler(Object sender, Microsoft.Build.Framework.TargetStartedEventArgs e) Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.TaskFinishedEventHandler(Object sender, Microsoft.Build.Framework.TaskFinishedEventArgs e) Represents the method that will handle the event of a build.
Void Microsoft.Build.Framework.TaskStartedEventHandler(Object sender, Microsoft.Build.Framework.TaskStartedEventArgs e) Represents the method that will handle the event of a build.

Microsoft.VisualC.STLCLR

TResult Microsoft.VisualC.StlClr.BinaryDelegate`3(TArg1 , TArg2 ) Describes a two-argument delegate. You use it to specify the arguments and return type of the delegate.
TResult Microsoft.VisualC.StlClr.UnaryDelegate`2(TArg ) Describes a one-argument delegate. You use it to specify the argument and return type of the delegate.

System.Core

Void System.Action`10(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10)
Void System.Action`11(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11)
Void System.Action`12(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12)
Void System.Action`13(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13)
Void System.Action`14(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14)
Void System.Action`15(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15)
Void System.Action`16(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, T16 arg16)
Void System.Action`9(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9)
TResult System.Func`10(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9)
TResult System.Func`11(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10)
TResult System.Func`12(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11)
TResult System.Func`13(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12)
TResult System.Func`14(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13)
TResult System.Func`15(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14)
TResult System.Func`16(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15)
TResult System.Func`17(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, T16 arg16)
Void System.IO.Pipes.PipeStreamImpersonationWorker() Represents the method to call as the client.

System.Data.Entity.Design

Void System.Data.Entity.Design.PropertyGeneratedEventHandler(Object sender, Data.Entity.Design.PropertyGeneratedEventArgs e)
Void System.Data.Entity.Design.TypeGeneratedEventHandler(Object sender, Data.Entity.Design.TypeGeneratedEventArgs e)

System.Data.Entity

Void System.Data.Objects.ObjectMaterializedEventHandler(Object sender, Data.Objects.ObjectMaterializedEventArgs e)

System.Data.SqlServerCe

Void System.Data.SqlServerCe.OnStartTableDownload(IAsyncResult ar, String tableName)
Void System.Data.SqlServerCe.OnStartTableUpload(IAsyncResult ar, String tableName)
Void System.Data.SqlServerCe.OnSynchronization(IAsyncResult ar, Int32 percentComplete)
Void System.Data.SqlServerCe.SqlCeFlushFailureEventHandler(Object sender, Data.SqlServerCe.SqlCeFlushFailureEventArgs e)
Void System.Data.SqlServerCe.SqlCeInfoMessageEventHandler(Object sender, Data.SqlServerCe.SqlCeInfoMessageEventArgs e)
Void System.Data.SqlServerCe.SqlCeRowUpdatedEventHandler(Object sender, Data.SqlServerCe.SqlCeRowUpdatedEventArgs e)
Void System.Data.SqlServerCe.SqlCeRowUpdatingEventHandler(Object sender, Data.SqlServerCe.SqlCeRowUpdatingEventArgs e)

Microsoft.Web.Deployment

Boolean Microsoft.Web.Deployment.DeploymentCancelCallback()

Microsoft.ExceptionMessageBox

Void Microsoft.SqlServer.MessageBox.CopyToClipboardEventHandler(Object sender, Microsoft.SqlServer.MessageBox.CopyToClipboardEventArgs e)

Microsoft.SqlServer.ConnectionInfo

Void Microsoft.SqlServer.Management.Common.DataTransferEventHandler(Object sender, Microsoft.SqlServer.Management.Common.DataTransferEventArgs e)
Boolean Microsoft.SqlServer.Management.Common.DataTransferProgressEventHandler(Object sender, Microsoft.SqlServer.Management.Common.DataTransferProgressEventArgs e)
Void Microsoft.SqlServer.Management.Common.ServerMessageEventHandler(Object sender, Microsoft.SqlServer.Management.Common.ServerMessageEventArgs e)
Void Microsoft.SqlServer.Management.Common.StatementEventHandler(Object sender, Microsoft.SqlServer.Management.Common.StatementEventArgs e)

Microsoft.SqlServer.ConnectionInfoExtended

Void Microsoft.SqlServer.Management.Trace.ReplayEventHandler(Object sender, Microsoft.SqlServer.Management.Trace.ReplayEventArgs args)
Void Microsoft.SqlServer.Management.Trace.ReplayPauseHandler(Object sender, EventArgs args)
Void Microsoft.SqlServer.Management.Trace.ReplayResultEventHandler(Object sender, Microsoft.SqlServer.Management.Trace.TraceEventArgs args)
Void Microsoft.SqlServer.Management.Trace.ReplayStartHandler(Object sender, EventArgs args)
Void Microsoft.SqlServer.Management.Trace.ReplayStopHandler(Object sender, EventArgs args)
Void Microsoft.SqlServer.Management.Trace.WriteNotifyEventHandler(Object sender, Microsoft.SqlServer.Management.Trace.TraceEventArgs args)

Microsoft.SqlServer.Management.Sdk.Sfc

Object Microsoft.SqlServer.Management.Sdk.Sfc.FilterPropertyHandler(Microsoft.SqlServer.Management.Sdk.Sfc.SfcSerializer serializer, Microsoft.SqlServer.Management.Sdk.Sfc.FilterPropertyEventArgs propertyArgs)
Object Microsoft.SqlServer.Management.Sdk.Sfc.Metadata.ReferenceResolverDelegate(Object instance, Object[] parameters)

Microsoft.SqlServer.Smo

Void Microsoft.SqlServer.Management.Smo.ProgressReportEventHandler(Object sender, Microsoft.SqlServer.Management.Smo.ProgressReportEventArgs e)
Void Microsoft.SqlServer.Management.Smo.ScriptingErrorEventHandler(Object sender, Microsoft.SqlServer.Management.Smo.ScriptingErrorEventArgs e)
Boolean Microsoft.SqlServer.Management.Smo.ScriptingFilter(Microsoft.SqlServer.Management.Sdk.Sfc.Urn urn)
Void Microsoft.SqlServer.Management.Smo.ServerEventHandler(Object sender, Microsoft.SqlServer.Management.Smo.ServerEventArgs e)

Microsoft.SqlServer.SmoExtended

Void Microsoft.SqlServer.Management.Smo.PercentCompleteEventHandler(Object sender, Microsoft.SqlServer.Management.Smo.PercentCompleteEventArgs e)
Void Microsoft.SqlServer.Management.Smo.VerifyCompleteEventHandler(Object sender, Microsoft.SqlServer.Management.Smo.VerifyCompleteEventArgs args)

Microsoft.ExceptionMessageBox

Void Microsoft.SqlServer.MessageBox.CopyToClipboardEventHandler(Object sender, Microsoft.SqlServer.MessageBox.CopyToClipboardEventArgs e)

Microsoft.SqlServer.ConnectionInfo

Void Microsoft.SqlServer.Management.Common.DataTransferEventHandler(Object sender, Microsoft.SqlServer.Management.Common.DataTransferEventArgs e)
Boolean Microsoft.SqlServer.Management.Common.DataTransferProgressEventHandler(Object sender, Microsoft.SqlServer.Management.Common.DataTransferProgressEventArgs e)
Void Microsoft.SqlServer.Management.Common.ServerMessageEventHandler(Object sender, Microsoft.SqlServer.Management.Common.ServerMessageEventArgs e)
Void Microsoft.SqlServer.Management.Common.StatementEventHandler(Object sender, Microsoft.SqlServer.Management.Common.StatementEventArgs e)

Microsoft.SqlServer.ConnectionInfoExtended

Void Microsoft.SqlServer.Management.Trace.ReplayEventHandler(Object sender, Microsoft.SqlServer.Management.Trace.ReplayEventArgs args)
Void Microsoft.SqlServer.Management.Trace.ReplayPauseHandler(Object sender, EventArgs args)
Void Microsoft.SqlServer.Management.Trace.ReplayResultEventHandler(Object sender, Microsoft.SqlServer.Management.Trace.TraceEventArgs args)
Void Microsoft.SqlServer.Management.Trace.ReplayStartHandler(Object sender, EventArgs args)
Void Microsoft.SqlServer.Management.Trace.ReplayStopHandler(Object sender, EventArgs args)
Void Microsoft.SqlServer.Management.Trace.WriteNotifyEventHandler(Object sender, Microsoft.SqlServer.Management.Trace.TraceEventArgs args)

Microsoft.SqlServer.Management.Sdk.Sfc

Object Microsoft.SqlServer.Management.Sdk.Sfc.FilterPropertyHandler(Microsoft.SqlServer.Management.Sdk.Sfc.SfcSerializer serializer, Microsoft.SqlServer.Management.Sdk.Sfc.FilterPropertyEventArgs propertyArgs)
Object Microsoft.SqlServer.Management.Sdk.Sfc.Metadata.ReferenceResolverDelegate(Object instance, Object[] parameters)

Microsoft.SqlServer.Smo

Void Microsoft.SqlServer.Management.Smo.ProgressReportEventHandler(Object sender, Microsoft.SqlServer.Management.Smo.ProgressReportEventArgs e)
Void Microsoft.SqlServer.Management.Smo.ScriptingErrorEventHandler(Object sender, Microsoft.SqlServer.Management.Smo.ScriptingErrorEventArgs e)
Boolean Microsoft.SqlServer.Management.Smo.ScriptingFilter(Microsoft.SqlServer.Management.Sdk.Sfc.Urn urn)
Void Microsoft.SqlServer.Management.Smo.ServerEventHandler(Object sender, Microsoft.SqlServer.Management.Smo.ServerEventArgs e)

Microsoft.SqlServer.SmoExtended

Void Microsoft.SqlServer.Management.Smo.PercentCompleteEventHandler(Object sender, Microsoft.SqlServer.Management.Smo.PercentCompleteEventArgs e)
Void Microsoft.SqlServer.Management.Smo.VerifyCompleteEventHandler(Object sender, Microsoft.SqlServer.Management.Smo.VerifyCompleteEventArgs args)