Skip to main content

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

Syntax
public class ResumeParams

Constructors

ResumeParams(Guid, string)

Constructor of CreateInstanceParams class

Declaration
public ResumeParams(Guid processId, string activityName = null)
Parameters
TypeNameDescription
GuidprocessIdProcess id
stringactivityName

Properties

ProcessId

Process id

Declaration
public Guid ProcessId { get; set; }
Property value
TypeDescription
Guid

IdentityId

The user id which execute operation

Declaration
public string IdentityId { get; set; }
Property value
TypeDescription
string

ImpersonatedIdentityId

The user id for whom executes operation

Declaration
public string ImpersonatedIdentityId { get; set; }
Property value
TypeDescription
string

ActivityName

The name of the activity from which the process should be resumed

Declaration
public string ActivityName { get; set; }
Property value
TypeDescription
string

ProcessParameters

Parameters to be passed to the process as the initial

Declaration
public IDictionary<string, object> ProcessParameters { get; set; }
Property value
TypeDescription
IDictionary<string, object>

Persist

Names of persist parameters in ResumeParams.ProcessParameters

Declaration
public List<string> Persist { get; set; }
Property value
TypeDescription
List<string>

Methods

AddPersistentParameter(string, object)

Add new persistent initial process parameter

Declaration
public ResumeParams AddPersistentParameter(string name, object value)
Parameters
TypeNameDescription
stringnameParameter name
objectvalueParameter value
Returns
TypeDescription
ResumeParams

AddTemporaryParameter(string, object)

Add new temporary initial process parameter

Declaration
public ResumeParams AddTemporaryParameter(string name, object value)
Parameters
TypeNameDescription
stringnameParameter name
objectvalueParameter value
Returns
TypeDescription
ResumeParams

Extension Methods