This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > GeoDatabaseDistributed > ESRI.ArcGIS.GeoDatabaseDistributed > Interfaces > ID > IDeltaDataChangesInit2 Interface > IDeltaDataChangesInit2.Init2 Method (ArcObjects .NET 10.5 SDK) |
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
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.