Import an acknowledgement message for a replica.
[Visual Basic 6.0] Sub ImportAcknowledgement(
ByVal data As IGDSData _
)
[Visual Basic .NET] Public Sub ImportAcknowledgement ( _ ByVal data As IGDSData _ )
[C#] public void ImportAcknowledgement ( IGDSData data );
[Java] public void importAcknowledgement ( IGDSData data ) throws IOException, AutomationException
[C++] HRESULT ImportAcknowledgement( IGDSData* data );
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.