BCTaskServerSubmitTask Method (String, IDictionaryString, Object, NullableDateTime, Int32, String, String, String, String, String) |
Adds a new task to the task queue.
Namespace:
BlueCieloECM.InnoCielo.Meridian.Server
Assembly:
BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.49.0)
Syntaxpublic void SubmitTask(
string progID,
IDictionary<string, Object> args,
Nullable<DateTime> startAt,
int priority,
string currentObjectID,
string machineName,
string vaultOrDataStoreName,
string workAreaID,
string userName
)
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
)
public:
void SubmitTask(
String^ progID,
IDictionary<String^, Object^>^ args,
Nullable<DateTime> startAt,
int priority,
String^ currentObjectID,
String^ machineName,
String^ vaultOrDataStoreName,
String^ workAreaID,
String^ userName
)
member SubmitTask :
progID : string *
args : IDictionary<string, Object> *
startAt : Nullable<DateTime> *
priority : int *
currentObjectID : string *
machineName : string *
vaultOrDataStoreName : string *
workAreaID : string *
userName : string -> unit
Parameters
- progID
- Type: SystemString
The ProgID of the task's COM class.
- args
- Type: System.Collections.GenericIDictionaryString, Object
The collection of arguments for the task.
- startAt
- Type: SystemNullableDateTime
The time to start the task.
- priority
- Type: SystemInt32
The priority of the task.
- currentObjectID
- Type: SystemString
The ID property value of the current object for the task.
- machineName
- Type: SystemString
The name of the EDM server machine.
- vaultOrDataStoreName
- Type: SystemString
The name of the vault or data store.
- workAreaID
- Type: SystemString
The ID property value of a work area in the vault.
- userName
- Type: SystemString
The name of the user who submits the task.
See Also