EMLookupTablesBeginLookupTableExcelUpload Method
|
Alterian Email Manager 6.2.3 SDK Help File
Begins a lookup table upload from a Microsoft Excel spreadsheet.
Namespace:
DMLibraryAssembly:
DMLibrary (in DMLibrary.dll) Version: 1.0.6340.17420
Syntaxpublic static int BeginLookupTableExcelUpload(
DMToken token,
int campaignDocumentId,
int lookupId,
string filename,
byte[] data,
int byteCount,
int chunkSize,
bool clearExistingData
)
Public Shared Function BeginLookupTableExcelUpload (
token As DMToken,
campaignDocumentId As Integer,
lookupId As Integer,
filename As String,
data As Byte(),
byteCount As Integer,
chunkSize As Integer,
clearExistingData As Boolean
) As Integer
public:
static int BeginLookupTableExcelUpload(
DMToken^ token,
int campaignDocumentId,
int lookupId,
String^ filename,
array<unsigned char>^ data,
int byteCount,
int chunkSize,
bool clearExistingData
)
static member BeginLookupTableExcelUpload :
token : DMToken *
campaignDocumentId : int *
lookupId : int *
filename : string *
data : byte[] *
byteCount : int *
chunkSize : int *
clearExistingData : bool -> int
DMLibrary.EMLookupTables.BeginLookupTableExcelUpload = function(token, campaignDocumentId, lookupId, filename, data, byteCount, chunkSize, clearExistingData);
Parameters
- token
- Type: DMToken
Authentication Token. - campaignDocumentId
- Type: SystemInt32
Id of the Campaign to import into. - lookupId
- Type: SystemInt32
Id of the Lookup Table to import into. - filename
- Type: SystemString
File name. - data
- Type: SystemByte
First chunk of data. - byteCount
- Type: SystemInt32
Total bytes in the file. - chunkSize
- Type: SystemInt32
Number of bytes in each chunk for this upload instance. - clearExistingData
- Type: SystemBoolean
Flag to clear existing data in the lookup table.
Return Value
Type:
Int32
See Also