Class ActivityFlowConfigurationAttribute
Represents attribute class used to identify a ActivityFlow.
Inheritance
System.Object
ActivityFlowConfigurationAttribute
Namespace: Mediachase.Commerce.Engine
Assembly: Mediachase.Commerce.dll
Version: 14.26.0Syntax
public sealed class ActivityFlowConfigurationAttribute : Attribute
Constructors
ActivityFlowConfigurationAttribute()
Declaration
public ActivityFlowConfigurationAttribute()
Properties
Description
Gets the activity flow's description.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DisplayName
Gets the activity flow's friendly name.
Declaration
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LegacyMode
Gets or sets whether the ActivityFlow is available in legacy mode or not.
Declaration
public bool LegacyMode { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Remarks
By default, if not set, its value will be false
, which means it is available in default mode.
If it is true
, then the activity flow is available in legacy mode.
Name
Gets the activity flow's name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Priority
Gets the activity flow's priority.
Declaration
public int Priority { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Remarks
Activity flow with higher priority will override registered activity flow which has the same name and mode.