Called when the Task server executes the task.
Namespace: BlueCieloECM.InnoCielo.Meridian.ServerAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)
Syntax
C# |
---|
protected abstract void OnExecute( string currentObjectID, IDictionary<string, Object> arguments, out Nullable<DateTime> runAgain ) |
Visual Basic |
---|
Protected MustOverride Sub OnExecute ( _ currentObjectID As String, _ arguments As IDictionary(Of String, Object), _ <OutAttribute> ByRef runAgain As Nullable(Of DateTime) _ ) |
Visual C++ |
---|
protected: virtual void OnExecute( String^ currentObjectID, IDictionary<String^, Object^>^ arguments, [OutAttribute] Nullable<DateTime>% runAgain ) abstract |
Parameters
- currentObjectID
- Type: System..::..String
The ID property value of the current object.
- arguments
- Type: System.Collections.Generic..::..IDictionary<(Of <(<'String, Object>)>)>
The collection of arguments.
- runAgain
- Type: System..::..Nullable<(Of <(<'DateTime>)>)>%
The date at which the task will be rescheduled to run again. If nullNothingnullptra null reference (Nothing in Visual Basic), the task will be removed from the schedule.