BCTaskObjectOnExecute Method |
Called when the Task server executes the task.
Namespace: BlueCieloECM.InnoCielo.Meridian.ServerAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.19.0)
Syntax protected abstract void OnExecute(
string currentObjectID,
IDictionary<string, Object> arguments,
out Nullable<DateTime> runAgain
)
Protected MustOverride Sub OnExecute (
currentObjectID As String,
arguments As IDictionary(Of String, Object),
<OutAttribute> ByRef runAgain As Nullable(Of DateTime)
)
protected:
virtual void OnExecute(
String^ currentObjectID,
IDictionary<String^, Object^>^ arguments,
[OutAttribute] Nullable<DateTime>% runAgain
) abstract
abstract OnExecute :
currentObjectID : string *
arguments : IDictionary<string, Object> *
runAgain : Nullable<DateTime> byref -> unit
Parameters
- currentObjectID
- Type: SystemString
The ID property value of the current object.
- arguments
- Type: System.Collections.GenericIDictionaryString, Object
The collection of arguments.
- runAgain
- Type: SystemNullableDateTime
The date at which the task will be rescheduled to run again.
If , the task will be removed from the schedule.
See Also