ArcObjects Library Reference (GeoDatabaseDistributed)  

IDeltaDataChangesInit2.Init2 Method

Initializes the class by setting delta database file name, export option, and the ability to access the file content randomly.

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

Parameters

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

  exportOption is a parameter of type esriExportDataChangesOption

RandomAccess [in]   RandomAccess is a parameter of type VARIANT_BOOL

Product Availability

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

Remarks

The init method initializes the DeltaDataChanges coclass. The RandomAccess parameter allows you to initialize the coclass with random access.

If the RandomAccess parameter is set to False, this interface performs the same function as IDeltaDataChangesInit::Init.

See Also

IDeltaDataChangesInit2 Interface