This document is archived and information here might be outdated.  Recommended version.


IGeoDataServer.ImportAcknowledgement Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseDistributed > ESRI.ArcGIS.GeoDatabaseDistributed > Interfaces > IG > IGeoDataServer Interface > IGeoDataServer.ImportAcknowledgement Method
ArcGIS Developer Help

IGeoDataServer.ImportAcknowledgement Method

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*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

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.

[C#]

The How to synchronize an acknowledgement message in a disconnected environment sample shows an example of how to use this method.

See Also

IGeoDataServer Interface