Table of Contents

Class AsyncActivityHandle.IdReference

Namespace
Temporalio.Client
Assembly
Temporalio.dll

Reference to an activity by its workflow ID, workflow run ID, and activity ID.

public record AsyncActivityHandle.IdReference : AsyncActivityHandle.Reference, IEquatable<AsyncActivityHandle.Reference>, IEquatable<AsyncActivityHandle.IdReference>
Inheritance
AsyncActivityHandle.IdReference
Implements
Inherited Members

Constructors

IdReference(string, string?, string)

Reference to an activity by its workflow ID, workflow run ID, and activity ID.

public IdReference(string WorkflowId, string? RunId, string ActivityId)

Parameters

WorkflowId string

ID for the activity's workflow.

RunId string

Run ID for the activity's workflow.

ActivityId string

ID for the activity.

Properties

ActivityId

ID for the activity.

public string ActivityId { get; init; }

Property Value

string

RunId

Run ID for the activity's workflow.

public string? RunId { get; init; }

Property Value

string

WorkflowId

ID for the activity's workflow.

public string WorkflowId { get; init; }

Property Value

string