GetTaskLogEntries
Description
Gets the log of a task
Signature
TaskLogEntry[] GetTaskLogEntries(string key, long taskId)
Parameters
Name | Data Type | Description |
---|---|---|
key |
string required |
The authentication key |
taskId |
long required |
The task ID |
Response
Data Type | Description |
---|---|
TaskLogEntry[ ] |
Example
//***************************************************
//
// Get Task Entries
//
//***************************************************
// Create instance of the webservice
SurveyDeployerSoapClient surveyDeployer = new SurveyDeployerSoapClient();
// Get all log entries connected to a specific batch task
TaskLogEntry[] entries = surveyDeployer.GetTaskLogEntries(key,taskID);