Table of Contents

Class CancelActivityInput

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

Remarks

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

Constructors

CancelActivityInput(string, string?, ActivityCancelOptions?)

public CancelActivityInput(string Id, string? RunId, ActivityCancelOptions? Options)

Parameters

Id string

Activity ID.

RunId string

Activity run ID if any.

Options ActivityCancelOptions

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

Id

Activity ID.

public string Id { get; init; }

Property Value

string

Options

Options passed in to cancel.

public ActivityCancelOptions? Options { get; init; }

Property Value

ActivityCancelOptions

RunId

Activity run ID if any.

public string? RunId { get; init; }

Property Value

string