Class ActorDefinition
Represent an actor in a process scheme
Inheritance
↳ object
↳ BaseDefinition
↳ ActorDefinition
Inherited Members
BaseDefinition.DesignerSettings
Equals(object)
Equals(object, object)
GetHashCode()
GetType()
MemberwiseClone()
ReferenceEquals(object, object)
ToString()
Namespace: OptimaJet.Workflow.Core.Model
Assembly: OptimaJet.Workflow.Core.dll
Syntaxpublic class ActorDefinition : BaseDefinition
Properties
OriginalName
If object was inlined, you can get its original name from this property
Declarationpublic string OriginalName { get; set; }
Type | Description |
---|---|
string |
OriginalSchemeCode
The code of the scheme to which the inlined object originally belonged.
Declarationpublic string OriginalSchemeCode { get; set; }
Type | Description |
---|---|
string |
WasInlined
Return true if the object was inlined.
Declarationpublic bool WasInlined { get; set; }
Type | Description |
---|---|
bool |
Rule
Rule name which is associated with the actor
Declarationpublic string Rule { get; set; }
Type | Description |
---|---|
string |
Value
Additional parameter which is passed to the appropriate methods IWorkflowRuleProvider
Declarationpublic string Value { get; set; }
Type | Description |
---|---|
string |
IsPredefined
Declarationpublic bool IsPredefined { get; set; }
Type | Description |
---|---|
bool |
Methods
Create(string, string, string)
Create ActorDefinition object
Declarationpublic static ActorDefinition Create(string name, string rule, string value)
Type | Name | Description |
---|---|---|
string | name | Name of the actor |
string | rule | Rule name which is associated with the actor |
string | value | Additional parameter which is passed to the appropriate methods <xref href="OptimaJet.Workflow.Core.Runtime.IWorkflowRuleProvider" data-throw-if-not-resolved="false"></xref> |
Type | Description |
---|---|
ActorDefinition | ActorDefinition object |
Clone()
Declarationpublic ActorDefinition Clone()
Type | Description |
---|---|
ActorDefinition |