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


IDataChangesEx.Extract Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > ID > IDataChangesEx Interface > IDataChangesEx.Extract Method
ArcGIS Developer Help

IDataChangesEx.Extract Method

Get changed rows for a specific class.

[Visual Basic .NET]
Public Function Extract ( _
    ByVal ClassName As String, _
    ByVal DiffType As esriDifferenceType _
) As IDifferenceCursor
[C#]
public IDifferenceCursor Extract (
    string ClassName,
    esriDifferenceType DiffType
);
[C++]
HRESULT Extract(
  BSTR ClassName,
  esriDifferenceType DiffType
);
[C++]
Parameters
ClassName [in]

ClassName is a parameter of type BSTR DiffType [in]
DiffType is a parameter of type esriDifferenceType

Product Availability

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

Remarks

The Extract method returns a difference cursor corresponding to all rows in a class with a specific esriDifferenceType. IRow objects returned from a difference cursor are meant to be a read only. If row editing is desired the OID returned from the call to IDifferenceCursor::NextRow should be used in a call to the ITable::GetRow or ITable::GetRows methods.

 

See Also

IDataChangesEx Interface