This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > GeoDatabaseDistributed > ESRI.ArcGIS.GeoDatabaseDistributed > Interfaces > IG > IGeoDataServer Interface > IGeoDataServer.ImportAcknowledgement Method (ArcObjects .NET 10.5 SDK) |
Import an acknowledgement message for a replica.
[Visual Basic .NET] Public Sub ImportAcknowledgement ( _ ByVal data As IGDSData _ )
[C#] public void ImportAcknowledgement ( IGDSData data );
[C++]
HRESULT ImportAcknowledgement(
IGDSData* data
);
[C++]
Parameters data [in]
data is a parameter of type IGDSData
The ImportAcknowledgement method is used to import an acknowledgement message into a replica. Use this method when synchronizing replicas in a disconnected environment. To synchronize replicas in a connected environment, see IReplicationAgent::SynchronizeReplica.
The acknowledgement message must first be generated by calling the GeoDataServer::ExportAcknowledgement method.
The data parameter takes a GDSData object. See the GDSData coclass for more information.
The How to synchronize an acknowledgement message in a disconnected environment sample shows an example of how to use this method.