Class BpmnTaskType
Specifies the type of the task in BpmnActivity.
Inheritance
System.Object
BpmnTaskType
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class BpmnTaskType : Enum
Examples
Node node = new Node()
{
Shape = new BpmnActivity()
{
ActivityType = BpmnActivityType.Task,
TaskType = BpmnTaskType.Service,
IsCall = true,
ISCompensationActivity = true,
Loop = BpmnLoopCharacteristic.Standard,
}
};
Fields
BusinessRule
Specifies the type of a task to be a Business Rule task according to BPMN.
Declaration
public const BpmnTaskType BusinessRule
Field Value
Type |
---|
BpmnTaskType |
InstantiatingReceive
Specifies the type of a task to be a InstantiatingReceive task according to BPMN.
Declaration
public const BpmnTaskType InstantiatingReceive
Field Value
Type |
---|
BpmnTaskType |
Manual
Specifies the type of a task to be a Manual task according to BPMN.
Declaration
public const BpmnTaskType Manual
Field Value
Type |
---|
BpmnTaskType |
None
Specifies the type of a task to be a None task according to BPMN.
Declaration
public const BpmnTaskType None
Field Value
Type |
---|
BpmnTaskType |
Receive
Specifies the type of a task to be a Receive task according to BPMN.
Declaration
public const BpmnTaskType Receive
Field Value
Type |
---|
BpmnTaskType |
Script
Specifies the type of a task to be a Script task according to BPMN.
Declaration
public const BpmnTaskType Script
Field Value
Type |
---|
BpmnTaskType |
Send
Specifies the type of a task to be a Send task according to BPMN.
Declaration
public const BpmnTaskType Send
Field Value
Type |
---|
BpmnTaskType |
Service
Specifies the type of a task to be a Service task according to BPMN.
Declaration
public const BpmnTaskType Service
Field Value
Type |
---|
BpmnTaskType |
User
Specifies the type of a task to be a User task according to BPMN.
Declaration
public const BpmnTaskType User
Field Value
Type |
---|
BpmnTaskType |