ArcObjects Library Reference (GeoDatabaseDistributed)  

IDeltaDataChangesInit.Init Method

Initializes the class by setting delta database file name and export option.

[Visual Basic .NET]
Public Sub Init ( _
    ByVal changesFileName As String, _
    ByVal exportOption As esriExportDataChangesOption _
)
[C#]
public void Init (
    string changesFileName,
    esriExportDataChangesOption exportOption
);
[C++]
HRESULT Init(
  BSTR changesFileName,
  esriExportDataChangesOption exportOption
);
[C++]

Parameters

changesFileName [in]   changesFileName is a parameter of type BSTR exportOption [in]

  exportOption is a parameter of type esriExportDataChangesOption

Product Availability

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

Remarks

This interface provides an init method which allows you to initialize the DeltaDataChanges coclass. The class can be initialized from either a delta database, a delta file geodatabase or a delta XML file. The changesFileName parameter is the path of the delta file and the exportOption parameter is the type of delta file.

See the DataChangesExporter coclass for more information on delta files.

See Also

IDeltaDataChangesInit Interface