Class ResumeParams
Represents parameters for resume the process
Inheritance
↳ object
↳ ResumeParams
Inherited Members
Equals(object)
Equals(object, object)
GetHashCode()
GetType()
MemberwiseClone()
ReferenceEquals(object, object)
ToString()
Namespace: OptimaJet.Workflow.Core.Runtime
Assembly: OptimaJet.Workflow.Core.dll
Syntaxpublic class ResumeParams
Constructors
ResumeParams(Guid, string)
Constructor of CreateInstanceParams class
Declarationpublic ResumeParams(Guid processId, string activityName = null)
Type | Name | Description |
---|---|---|
Guid | processId | Process id |
string | activityName |
Properties
ProcessId
Process id
Declarationpublic Guid ProcessId { get; set; }
Type | Description |
---|---|
Guid |
IdentityId
The user id which execute operation
Declarationpublic string IdentityId { get; set; }
Type | Description |
---|---|
string |
ImpersonatedIdentityId
The user id for whom executes operation
Declarationpublic string ImpersonatedIdentityId { get; set; }
Type | Description |
---|---|
string |
ActivityName
The name of the activity from which the process should be resumed
Declarationpublic string ActivityName { get; set; }
Type | Description |
---|---|
string |
ProcessParameters
Parameters to be passed to the process as the initial
Declarationpublic IDictionary<string, object> ProcessParameters { get; set; }
Type | Description |
---|---|
IDictionary<string, object> |
Persist
Names of persist parameters in ResumeParams.ProcessParameters
Declarationpublic List<string> Persist { get; set; }
Type | Description |
---|---|
List<string> |
Methods
AddPersistentParameter(string, object)
Add new persistent initial process parameter
Declarationpublic ResumeParams AddPersistentParameter(string name, object value)
Type | Name | Description |
---|---|---|
string | name | Parameter name |
object | value | Parameter value |
Type | Description |
---|---|
ResumeParams |
AddTemporaryParameter(string, object)
Add new temporary initial process parameter
Declarationpublic ResumeParams AddTemporaryParameter(string name, object value)
Type | Name | Description |
---|---|---|
string | name | Parameter name |
object | value | Parameter value |
Type | Description |
---|---|
ResumeParams |