Click or drag to resize

ConditionalTransition Class

Specifies a conditional transition.
Inheritance Hierarchy
SystemObject
  Colygon.MatchPoint.WorkflowKit.ConfigurationBaseTransition
    Colygon.MatchPoint.WorkflowKit.ConfigurationConditionalTransition

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

The ConditionalTransition type exposes the following members.

Constructors
  NameDescription
Public methodConditionalTransition
Initializes a new instance of the ConditionalTransition class
Top
Properties
  NameDescription
Public propertyLabel
This will be the name displayed on the 'resume workflow' user action if any of the actions in this transition fail. If null, the name of the current state will be displayed.
(Overrides BaseTransitionLabel.)
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(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.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString (Overrides ObjectToString.)
Top
Fields
  NameDescription
Public fieldActions
Contains the actions that are executed when this transition is executed.
(Inherited from BaseTransition.)
Public fieldEvaluateImmediately
If enabled, the conditional expression is evaluated immediately after the new state is reached, otherwise only after the item is updated.
Public fieldExpression
Specifies an expression that evaluates to 'true' or 'false'. If the expression evaluates to 'true', the current state is transformed to the specified next state.
Public fieldNextStateId
Specifies the next state in case this condition is matched.
(Inherited from BaseTransition.)
Top
Remarks
A conditional transition uses the MatchPoint expression engine to determine, whether an item should be moved to the specified next state.
Remarks
This is a MatchPoint configuration class.
See Also