Click or drag to resize

ForEachAction Class

Provides functionality for iterating over a collection of objects and executing the same actions for each of them.
Inheritance Hierarchy

Namespace:  Colygon.MatchPoint.WorkflowKit.Actions
Assembly:  Colygon.MatchPoint (in Colygon.MatchPoint.dll) Version: 2019.2.1.0
Syntax
C#
[SerializableAttribute]
public class ForEachAction : BaseAction

The ForEachAction type exposes the following members.

Constructors
  NameDescription
Public methodForEachAction
Initializes a new instance of the ForEachAction class
Top
Properties
  NameDescription
Public propertyId (Inherited from BaseAction.)
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodExecute (Overrides BaseActionExecute(WorkflowScope).)
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 methodProcessChildElement (Inherited from BaseAction.)
Public methodRun(WorkflowScope) (Inherited from BaseAction.)
Public methodRun(WorkflowScope, Boolean) (Inherited from BaseAction.)
Public methodToString (Overrides ObjectToString.)
Top
Fields
  NameDescription
Public fieldActions
The actions that are executed for every entry in the evaluated expression.
Public fieldErrorHandler
Specifies an error handling method in case an exception occures during the execution of the action.
(Inherited from BaseAction.)
Public fieldExpression
Specifies the expression that should evaluate to an object of type IEnumerable.
Public fieldVariableName
Specifies the loop variable name (which can be accessed later in an expression in the loop block).
Top
Remarks
This is a MatchPoint configuration class.
See Also