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
WorkflowIdstringID for the activity's workflow.
RunIdstringRun ID for the activity's workflow.
ActivityIdstringID for the activity.
Properties
ActivityId
ID for the activity.
public string ActivityId { get; init; }
Property Value
RunId
Run ID for the activity's workflow.
public string? RunId { get; init; }
Property Value
WorkflowId
ID for the activity's workflow.
public string WorkflowId { get; init; }