Table of Contents

Class CancelExternalWorkflowInput

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

Remarks

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

Constructors

CancelExternalWorkflowInput(string, string?)

public CancelExternalWorkflowInput(string Id, string? RunId)

Parameters

Id string

Workflow ID.

RunId string

Workflow run ID if any.

Remarks

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

Properties

Id

Workflow ID.

public string Id { get; init; }

Property Value

string

RunId

Workflow run ID if any.

public string? RunId { get; init; }

Property Value

string