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.
Delegate that handles the Status event that is raised during agent execution.
Namespace: Microsoft.SqlServer.Replication
Assembly: Microsoft.SqlServer.Replication (in Microsoft.SqlServer.Replication.dll)
Syntax
'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub StatusEventHandler ( _
sender As Object, _
e As StatusEventArgs _
)
'Usage
Dim instance As New StatusEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void StatusEventHandler(
Object sender,
StatusEventArgs e
)
[ComVisibleAttribute(false)]
public delegate void StatusEventHandler(
Object^ sender,
StatusEventArgs^ e
)
[<ComVisibleAttribute(false)>]
type StatusEventHandler =
delegate of
sender:Object *
e:StatusEventArgs -> unit
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- sender
Type: System.Object
The source of the status event.
- e
Type: Microsoft.SqlServer.Replication.StatusEventArgs
A StatusEventArgs object that contains the event data.
Remarks
The Status event returns a status message from the replication agent during synchronization. The AgentCore.StatusEventHandler returns a StatusEventArgs object when the Status event occurs during agent execution.
See Also
Reference
Microsoft.SqlServer.Replication Namespace
Other Resources
NIB Synchronize a Pull Subscription (RMO Programming)