StatementEventHandler-Delegat
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 unterstützt die Verwendung von Delegaten, aber nicht die Deklaration neuer Delegaten.
Parameter
- sender
Typ: System. . :: . .Object
An Object system object value that specifies the object that raised the event.
- e
Typ: Microsoft.SqlServer.Management.Common. . :: . .StatementEventArgs
An StatementEventArgs value that specifies the arguments passed to the event handler.
Siehe auch