DMExportsCreateExportByList Method
|
Alterian Email Manager 6.2.3 SDK Help File Creates an export context for recipients on any of the specified lists.
Namespace:
DMLibraryAssembly:
DMLibrary (in DMLibrary.dll) Version: 1.0.6340.17420
Syntaxpublic static int CreateExportByList(
DMToken token,
int pageSize,
List<int> lists,
out int count
)
Public Shared Function CreateExportByList (
token As DMToken,
pageSize As Integer,
lists As List(Of Integer),
<OutAttribute> ByRef count As Integer
) As Integer
public:
static int CreateExportByList(
DMToken^ token,
int pageSize,
List<int>^ lists,
[OutAttribute] int% count
)
static member CreateExportByList :
token : DMToken *
pageSize : int *
lists : List<int> *
count : int byref -> int
DMLibrary.DMExports.CreateExportByList = function(token, pageSize, lists, count);
Parameters
- token
- Type: DMToken
Authenticated token - pageSize
- Type: SystemInt32
Number of records per page. When 0, pages are not created, use 0 for maximum performance - lists
- Type: System.Collections.GenericListInt32
One or more recipientlist IDs - count
- Type: SystemInt32
Output: number of recipients included in export
Return Value
Type:
Int32ID of newly created export context
RemarksThe export context must be deleted once it is no longer needed by calling
DeleteExport.
See Also