Adds a new task to the task queue.

Namespace: BlueCieloECM.InnoCielo.Meridian.Server
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public void SubmitTask(
	string progID,
	IDictionary<string, Object> args,
	Nullable<DateTime> startAt,
	int priority,
	string currentObjectID,
	string machineName,
	string vaultOrDataStoreName,
	string workAreaID,
	string userName
)
Visual Basic
Public Sub SubmitTask ( _
	progID As String, _
	args As IDictionary(Of String, Object), _
	startAt As Nullable(Of DateTime), _
	priority As Integer, _
	currentObjectID As String, _
	machineName As String, _
	vaultOrDataStoreName As String, _
	workAreaID As String, _
	userName As String _
)
Visual C++
public:
void SubmitTask(
	String^ progID, 
	IDictionary<String^, Object^>^ args, 
	Nullable<DateTime> startAt, 
	int priority, 
	String^ currentObjectID, 
	String^ machineName, 
	String^ vaultOrDataStoreName, 
	String^ workAreaID, 
	String^ userName
)

Parameters

progID
Type: System..::..String
The ProgID of the task's COM class.
args
Type: System.Collections.Generic..::..IDictionary<(Of <(<'String, Object>)>)>
The collection of arguments for the task.
startAt
Type: System..::..Nullable<(Of <(<'DateTime>)>)>
The time to start the task.
priority
Type: System..::..Int32
The priority of the task.
currentObjectID
Type: System..::..String
The ID property value of the current object for the task.
machineName
Type: System..::..String
The name of the EDM server machine.
vaultOrDataStoreName
Type: System..::..String
The name of the vault or data store.
workAreaID
Type: System..::..String
The ID property value of a work area in the vault.
userName
Type: System..::..String
The name of the user who submits the task.

See Also