StatementEventHandler Delegate
The StatementEventHandler class represents the method that handles the event raised by a statement.
Namespace: Microsoft.SqlServer.Management.Common
Assembly: Microsoft.SqlServer.ConnectionInfo (in Microsoft.SqlServer.ConnectionInfo.dll)
Syntax
'Declaration
Public Delegate Sub StatementEventHandler ( _
sender As Object, _
e As StatementEventArgs _
)
'Usage
Dim instance As New StatementEventHandler(AddressOf HandlerMethod)
public delegate void StatementEventHandler(
Object sender,
StatementEventArgs e
)
public delegate void StatementEventHandler(
Object^ sender,
StatementEventArgs^ e
)
type StatementEventHandler =
delegate of
sender:Object *
e:StatementEventArgs -> unit
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- sender
Type: System.Object
An Object system object value that specifies the object that raised the event.
- e
Type: Microsoft.SqlServer.Management.Common.StatementEventArgs
An StatementEventArgs value that specifies the arguments passed to the event handler.
See Also
Reference
Microsoft.SqlServer.Management.Common Namespace