VerifyCompleteEventHandler Delegate

The VerifyCompleteEventHandler class represents the event handler that handles completion events.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.SmoExtended (in Microsoft.SqlServer.SmoExtended.dll)

Syntax

'Declaration
Public Delegate Sub VerifyCompleteEventHandler ( _
    sender As Object, _
    args As VerifyCompleteEventArgs _
)
'Usage
Dim instance As New VerifyCompleteEventHandler(AddressOf HandlerMethod)
public delegate void VerifyCompleteEventHandler(
    Object sender,
    VerifyCompleteEventArgs args
)
public delegate void VerifyCompleteEventHandler(
    Object^ sender, 
    VerifyCompleteEventArgs^ args
)
type VerifyCompleteEventHandler = 
    delegate of 
        sender:Object * 
        args:VerifyCompleteEventArgs -> unit
JScript supports the use of delegates, but not the declaration of new ones.

Parameters