Interface IWorkflowContext
Context for a server method which runs on a Workflow event
Inherited Members
Namespace: Innovator.Server
Assembly: Innovator.Client.dll
Syntax
public interface IWorkflowContext : IContext
Properties
| Improve this Doc View SourceActivity
The activity during which the method is being called
Declaration
Activity Activity { get; }
Property Value
Type | Description |
---|---|
Activity |
Context
The item which is the context of the workflow
Declaration
IReadOnlyItem Context { get; }
Property Value
Type | Description |
---|---|
IReadOnlyItem |
ErrorBuilder
Error builder which captures any errors which are encountered
Declaration
IErrorBuilder ErrorBuilder { get; }
Property Value
Type | Description |
---|---|
IErrorBuilder |
Exception
Get the exception object created for any errors that have happened so far.
Declaration
Exception Exception { get; }
Property Value
Type | Description |
---|---|
System.Exception |
QueryDefaults
Method for modifying the query to get the context item
Declaration
Action<IItem> QueryDefaults { get; set; }
Property Value
Type | Description |
---|---|
System.Action<IItem> |
WorkflowEvent
The event for which the server method is being called
Declaration
WorkflowEvent WorkflowEvent { get; }
Property Value
Type | Description |
---|---|
WorkflowEvent |