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


ITableDataChangesInfo.GetDeletedIDs Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseDistributed > ESRI.ArcGIS.GeoDatabaseDistributed > Interfaces > IT > ITableDataChangesInfo Interface > ITableDataChangesInfo.GetDeletedIDs Method
ArcGIS Developer Help

ITableDataChangesInfo.GetDeletedIDs Method

The deleted ids.

[Visual Basic .NET]
Public Sub GetDeletedIDs ( _
    ByRef DeletedIDs As ILongArray, _
    ByRef DeletedGIDs As IStringArray _
)
[C#]
public void GetDeletedIDs (
    ref ILongArray DeletedIDs,
    ref IStringArray DeletedGIDs
);
[C++]
HRESULT GetDeletedIDs(
  ILongArray** DeletedIDs,
  IStringArray** DeletedGIDs
);
[C++]
Parameters
DeletedIDs [out]

DeletedIDs is a parameter of type ILongArray** DeletedGIDs [out]
DeletedGIDs is a parameter of type IStringArray**

Product Availability

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

Remarks

This method can be used to return a list of IDs and/or Global IDs corresponding to those that were set to be deleted with the SetDeletedIDs method. 

The GetDeletedIDs method takes an empty long array (DeletedIDs parameter) and/or an empty string array (DeletedGIDs parameter).  These arrays will be populated, respectively, with the IDs and the global IDs of the records to delete. 

See Also

ITableDataChangesInfo Interface