TaskExecutionResult Enumeration
In This Topic
The result of executing a task or operation.
Syntax
'Declaration
<SmartAssembly.Attributes.DoNotPruneTypeAttribute()>
<SmartAssembly.Attributes.DoNotObfuscateTypeAttribute()>
Public Enum TaskExecutionResult
Inherits System.Enum
[SmartAssembly.Attributes.DoNotPruneType()]
[SmartAssembly.Attributes.DoNotObfuscateType()]
public enum TaskExecutionResult : System.Enum
[SmartAssembly.Attributes.DoNotPruneType()]
[SmartAssembly.Attributes.DoNotObfuscateType()]
public enum class TaskExecutionResult : public System.Enum
Members
Member | Value | Description |
Abandoned | 8 |
The task was abandoned due to a shutdown signal.
|
ExtensionConfigurationError | 9 |
There is a problem with configuration for the extension
|
HostProcessFailed | 4 |
The task hosting process failed to start or shut down unexpectedly.
|
InternalError | 1 |
An internal adTempus error occurred while trying to run the task
|
NotStarted | 5 |
The task has not been started.
|
Running | 6 |
The task is running.
|
ScriptCompileFailure | 2 |
The script failed to compile.
|
ScriptExecutionError | 3 |
The script failed to execute properly.
|
Success | 0 |
The task ran successfully
|
Timeout | 7 |
The task was terminated because it exceeded its allowed runtime.
|
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
ArcanaDevelopment.adTempus.Shared.TaskExecutionResult
See Also