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 PercentCompleteEventHandler class represents the event handler that is used to handle percent complete events.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.SmoExtended (in Microsoft.SqlServer.SmoExtended.dll)
Syntax
'Declaration
Public Delegate Sub PercentCompleteEventHandler ( _
sender As Object, _
e As PercentCompleteEventArgs _
)
'Usage
Dim instance As New PercentCompleteEventHandler(AddressOf HandlerMethod)
public delegate void PercentCompleteEventHandler(
Object sender,
PercentCompleteEventArgs e
)
public delegate void PercentCompleteEventHandler(
Object^ sender,
PercentCompleteEventArgs^ e
)
type PercentCompleteEventHandler =
delegate of
sender:Object *
e:PercentCompleteEventArgs -> 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.PercentCompleteEventArgs
A PercentCompletehttps://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemeventargsclasstopic.asp EventArgs object that contains the event data.