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


IDeltaDataChangesInit2.Init2 Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseDistributed > ESRI.ArcGIS.GeoDatabaseDistributed > Interfaces > ID > IDeltaDataChangesInit2 Interface > IDeltaDataChangesInit2.Init2 Method
ArcGIS Developer Help

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 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