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
- sender
Type: System.Object
An Object value that specifies the source of the event.
- args
Type: Microsoft.SqlServer.Management.Smo.VerifyCompleteEventArgs
An VerifyCompleteEventArgs object that contains the event data.