dotConnect for Salesforce Documentation
Devart.Data.Salesforce Namespace / SalesforceConnection Class / GetDeletedIds Method
The table to get the IDs of the deleted objects from.
The lower bound of the period, during which the objects to get IDs of were deleted.
The upper bound of the period, during which the objects to get IDs of were deleted.

In This Topic
    GetDeletedIds Method
    In This Topic
    Gets the IDs of objects from the specified table that were deleted during a specified perod.
    Syntax
    'Declaration
     
    Public Function GetDeletedIds( _
       ByVal tableName As String, _
       ByVal startDate As Date, _
       ByVal endDate As Date _
    ) As String()
    public string[] GetDeletedIds( 
       string tableName,
       DateTime startDate,
       DateTime endDate
    )

    Parameters

    tableName
    The table to get the IDs of the deleted objects from.
    startDate
    The lower bound of the period, during which the objects to get IDs of were deleted.
    endDate
    The upper bound of the period, during which the objects to get IDs of were deleted.

    Return Value

    The array of IDs of objects from the specified table that were deleted during a specified perod.
    See Also