Click or drag to resize

AbstractErrorManagedActivity Class

Provides a base for error handled activities.
Inheritance Hierarchy
SystemObject
  System.ActivitiesActivity
    Scanjour.Workflow4.ActivityLibraryAbstractErrorManagedActivity
      More

Namespace: Scanjour.Workflow4.ActivityLibrary
Assembly: Scanjour.Workflow4.ActivityLibrary_24.5.0.0 (in Scanjour.Workflow4.ActivityLibrary_24.5.0.0.dll) Version: 24.5.0.0 (24.5.0.0)
Syntax
public abstract class AbstractErrorManagedActivity : Activity

The AbstractErrorManagedActivity type exposes the following members.

Constructors
 NameDescription
Public methodAbstractErrorManagedActivity Build implementation of dynamic workflow activity
Top
Properties
 NameDescription
Protected propertyCacheIdGets the identifier of the cache that is unique within the scope of the workflow definition.
(Inherited from Activity)
Public propertyCancel True if CANCEL action is detected.
Protected propertyConstraintsGets a collection of Constraint activities that can be configured to provide validation for the Activity.
(Inherited from Activity)
Public propertyDisplayNameGets or sets an optional friendly name that is used for debugging, validation, exception handling, and tracking.
(Inherited from Activity)
Public propertyIdGets an identifier that is unique in the scope of the workflow definition.
(Inherited from Activity)
Protected propertyImplementationGets or sets the delegate that returns an Activity that contains the execution logic.
(Inherited from Activity)
Protected propertyImplementationVersionGets or sets the version of the implementation used.
(Inherited from Activity)
Public propertyResult Provides result
Top
Methods
 NameDescription
Protected methodCacheMetadataCreates and validates a description of the activity's arguments, variables, child activities, and activity delegates.
(Inherited from Activity)
Protected methodCreateInitializationActivity Defines the activity that is executed before the while-loop that controls the managed activity. By default, this method returns an empty sequence activity, which does absolutely nothing. To make custom initialization code, please override this method and let it return the new initial activity.
Protected methodCreateManagedActivity A method that should be overriden in order to create an instance of needed activity that will be error managed.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Protected methodGetActivityVariables Overriding this method, makes it possible for the descendant to define inner scope variables. By default (not overridden), the method returns an empty enumeration of variables, i.e. no inner scope variables are defined.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Protected methodOnCreateDynamicUpdateMapRaises an event when creating dynamic update map.
(Inherited from Activity)
Public methodShouldSerializeDisplayNameIndicates whether the DisplayName property should be serialized.
(Inherited from Activity)
Public methodToStringReturns a String that contains the Id and DisplayName of the Activity.
(Inherited from Activity)
Top
Fields
 NameDescription
Protected fieldAction Action variable that is used to store and pass compensating action to child class.
Protected fieldDelayInterval Timespan variable that is used to store the delaytime.
Top
Extension Methods
Remarks
If needed it is possible to extend support for other compensation actions, currently it is only supported CompensatingAction.ActionType.Retry
See Also
Inheritance Hierarchy