Interface IActivityContext
Interface for workflow execution context.
Inherited Members
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
System.IDisposable.Dispose()
Namespace: Kephas.Workflow
Assembly: Kephas.Workflow.dll
Syntax
public interface IActivityContext : IContext, IExpando, IDynamicMetaObjectProvider, IIndexable, ILoggable, IDisposable
Properties
| Improve this Doc View SourceActivity
Gets or sets the activity being executed.
Declaration
IActivity Activity { get; set; }
Property Value
Type | Description |
---|---|
IActivity | The activity being executed. |
Remarks
The activity's input parameters are contained in the activity itself as members.
Exception
Gets or sets the execution exception.
Declaration
Exception Exception { get; set; }
Property Value
Type | Description |
---|---|
System.Exception | The execution exception. |
Result
Gets or sets the execution result.
Declaration
object Result { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The execution result. |
Remarks
The result contains as values the activity's output parameters.
WorkflowProcessor
Gets the workflow processor.
Declaration
IWorkflowProcessor WorkflowProcessor { get; }
Property Value
Type | Description |
---|---|
IWorkflowProcessor | The workflow processor. |