Table of Contents

Class CancelWorkflowInput

Namespace
Temporalio.Client.Interceptors
Assembly
Temporalio.dll
public record CancelWorkflowInput : IEquatable<CancelWorkflowInput>
Inheritance
CancelWorkflowInput
Implements
Inherited Members

Remarks

WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.

Constructors

CancelWorkflowInput(string, string?, string?, WorkflowCancelOptions?)

public CancelWorkflowInput(string Id, string? RunId, string? FirstExecutionRunId, WorkflowCancelOptions? Options)

Parameters

Id string

Workflow ID.

RunId string

Workflow run ID if any.

FirstExecutionRunId string

Run that started the workflow chain to cancel.

Options WorkflowCancelOptions

Options passed in to cancel.

Remarks

WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.

Properties

FirstExecutionRunId

Run that started the workflow chain to cancel.

public string? FirstExecutionRunId { get; init; }

Property Value

string

Id

Workflow ID.

public string Id { get; init; }

Property Value

string

Options

Options passed in to cancel.

public WorkflowCancelOptions? Options { get; init; }

Property Value

WorkflowCancelOptions

RunId

Workflow run ID if any.

public string? RunId { get; init; }

Property Value

string