ArcObjects Library Reference (GeoDatabase)  

IVersionedObject3.GetVersionRegistrationInfo Method

Indicates if this object is registered as versioned and is moving edits to base.

[Visual Basic .NET]
Public Sub GetVersionRegistrationInfo ( _
    ByRef isRegistered As Boolean, _
    ByRef isMovingEditsToBase As Boolean _
)
[C#]
public void GetVersionRegistrationInfo (
    ref bool isRegistered,
    ref bool isMovingEditsToBase
);
[C++]
HRESULT GetVersionRegistrationInfo(
  VARIANT_BOOL* isRegistered,
  VARIANT_BOOL* isMovingEditsToBase
);
[C++]

Parameters

isRegistered [out]   isRegistered is a parameter of type VARIANT_BOOL isMovingEditsToBase [out]   isMovingEditsToBase is a parameter of type VARIANT_BOOL

Product Availability

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

Remarks

The GetVersionRegistrationInfo method provides access to the properties of the versioned object. The IsRegistered argument is a boolean that represents if the object is versioned. The isMovingEditsToBase argument represents if the versioned object is currently moving edits to base. This argument must be set to false during registration in order to enable archiving on the versioned object.

See Also

IVersionedObject3 Interface