Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The SmoApplication.DatabaseEventHandler class represents the event handler that handles database events.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Delegate Sub DatabaseEventHandler ( _
sender As Object, _
e As SmoEventArgs _
)
'Usage
Dim instance As New DatabaseEventHandler(AddressOf HandlerMethod)
public delegate void DatabaseEventHandler(
Object sender,
SmoEventArgs e
)
public delegate void DatabaseEventHandler(
Object^ sender,
SmoEventArgs^ e
)
type DatabaseEventHandler =
delegate of
sender:Object *
e:SmoEventArgs -> unit
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- sender
Type: System.Object
An Object value that specifies the source of the event.
- e
Type: Microsoft.SqlServer.Management.Smo.SmoEventArgs
A SmoEventArgs object that contains the event data.