Click or drag to resize

WorkflowState Class

Specifies a workflow state.
Inheritance Hierarchy
SystemObject
  Colygon.MatchPoint.WorkflowKit.ConfigurationWorkflowState

Namespace:  Colygon.MatchPoint.WorkflowKit.Configuration
Assembly:  Colygon.MatchPoint (in Colygon.MatchPoint.dll) Version: 2019.2.1.0
Syntax
C#
[SerializableAttribute]
public sealed class WorkflowState

The WorkflowState type exposes the following members.

Constructors
  NameDescription
Public methodWorkflowState
Initializes a new instance of the WorkflowState class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString (Overrides ObjectToString.)
Top
Fields
  NameDescription
Public fieldDescription
Specifies a description of the state.
Public fieldEntryActions
Contains the actions that are executed when this workflow state is entered.
Public fieldId
Internal unique ID of the state.
Public fieldName
Specifies the name of the state.
Public fieldTransitions
Contains the transitions for this workflow state.
Top
Remarks
The MatchPoint workflow kit is implemented as a state machine. Every item that has a workflow running has a defined state at every time during the execution of the workflow. A state can be configured with transitions (to move items between states) and actions.
Remarks
This is a MatchPoint configuration class.
See Also