Class CancelWorkflowUpdateInput
- Namespace
- Temporalio.Nexus
- Assembly
- Temporalio.dll
Input passed to CancelWorkflowUpdateAsync(TemporalOperationCancelContext, CancelWorkflowUpdateInput).
public class CancelWorkflowUpdateInput
- Inheritance
-
CancelWorkflowUpdateInput
- Inherited Members
Remarks
WARNING: Workflow updates as Nexus operations are experimental.
Constructors
CancelWorkflowUpdateInput(string, string, string)
Initializes a new instance of the CancelWorkflowUpdateInput class.
public CancelWorkflowUpdateInput(string workflowId, string runId, string updateId)
Parameters
workflowIdstringWorkflow ID extracted from the operation token.
runIdstringWorkflow run ID extracted from the operation token. May be empty.
updateIdstringUpdate ID extracted from the operation token.
Properties
RunId
Gets the workflow run ID extracted from the operation token.
public string RunId { get; }
Property Value
UpdateId
Gets the update ID extracted from the operation token.
public string UpdateId { get; }
Property Value
WorkflowId
Gets the workflow ID extracted from the operation token.
public string WorkflowId { get; }