ArcObjects Library Reference (GeoDatabaseDistributed)  

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