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


IConflictClass.RestoreRow Method (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (GeoDatabase)  

IConflictClass.RestoreRow Method

Restores the row from either the reconcile version or the prereconcile version.

[Visual Basic .NET]
Public Function RestoreRow ( _
    ByVal rowID As Integer _
) As IRow
[C#]
public IRow RestoreRow (
    int rowID
);
[C++]
HRESULT RestoreRow(
  long rowID,
  IRow** Row
);
[C++]

Parameters rowID [in] rowID is a parameter of type long Row [out, retval]
Row is a parameter of type IRow

Product Availability

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

Remarks

The RestoreRow method should only be called in the case of restoring a row that was removed in the edit session because of a DeleteUpdate conflict with the target version.

The row is restored from the pre-reconcile version that represents the state of the database prior to the reconcile operation.

See Also

IConflictClass Interface