SmoApplication.DatabaseEventHandler Delegate

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