3dak Client

ContactList.ContactItems.RetrieveData Method 

Loads a specified List of Contacts from ResultSet.

[Visual Basic]
Public Function RetrieveData( _ 
   ByVal Int64 As Int64, _ 
   ByVal Int64 As Int64 _ 
) As List<T>
[C#]
public List<T> RetrieveData(
   long Int64,
   long Int64
);
[C++]
public: List<T>* RetrieveData(
   __int64 Int64,
   __int64 Int64
);
[JScript]
public function RetrieveData(
   long Int64,
   long Int64
): List<T>;

Parameters

StartIndex
Index of first Contact in List
EndIndex
Index of last Contact in List

Remarks

Never Load more than 500 Contacts at once with this Method. ResultSet is always up to Date. If StartIndex and EndIndex exceed ResultSet bounds Indexes are corrected. Filtering and Sorting is applied to this list.

Example

Dim x As New ppm3dakClient.Contacts.ContactList(Web, Cat) 'Retrieve Contacts from Index 1000 to 1100 For Each Contact As ppm3dakClient.Contacts.Contact In x.ContactFilter.RetrieveData(1000, 1100) Response.Write(Contact.Firstname) Next

See Also

ContactList.ContactItems Class | ppm3dakClient.Contacts Namespace