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


IVersionedObject3.GetVersionRegistrationInfo Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IV > IVersionedObject3 Interface > IVersionedObject3.GetVersionRegistrationInfo Method
ArcGIS Developer Help

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(
  Boolean* isRegistered,
  Boolean* isMovingEditsToBase
);
[C++]
Parameters
isRegistered [out]

isRegistered is a parameter of type bool* isMovingEditsToBase [out]
isMovingEditsToBase is a parameter of type 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