SyncUpdateCallback Delegate
Receives event notifications during a replica synchronization.
Assembly: System.DirectoryServices (in System.DirectoryServices.dll)
'Declaration Public Delegate Function SyncUpdateCallback ( _ eventType As SyncFromAllServersEvent, _ targetServer As String, _ sourceServer As String, _ exception As SyncFromAllServersOperationException _ ) As Boolean 'Usage Dim instance As New SyncUpdateCallback(AddressOf HandlerMethod)
Parameters
- eventType
- Type: System.DirectoryServices.ActiveDirectory.SyncFromAllServersEvent
One of the SyncFromAllServersEvent members that specifies the type of event.
- targetServer
- Type: System.String
Contains the DNS name of the server that is the target of the replication. This parameter will be Nothing if it is not used by the notification.
- sourceServer
- Type: System.String
Contains the DNS name of the server that is the source of the replication. This parameter will be Nothing if it is not used by the notification.
- exception
- Type: System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException
A SyncFromAllServersOperationException object that contains additional information about any error that has occurred. This parameter will be Nothing if no error has occurred.
Return Value
Type: System.Booleantrue if the SyncReplicaFromAllServers method invoked on a ADAMInstance, DirectoryServer or DomainController object should resume; false if the SyncReplicaFromAllServers method should terminate.
operation takes a long time to complete and potentially could fail on a server. The SyncUpdateCallback callback function enables the application to indicate whether the SyncReplicaFromAllServers method should continue executing. For example, the application could return false to terminate SyncReplicaFromAllServers
execution if an error occurs. Another scenario in which this capability would be used is to terminate SyncReplicaFromAllServers
execution once the application detects that synchronization has completed for a certain target server or source server pair.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.