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
stringID for the activity's workflow.
RunId
stringRun ID for the activity's workflow.
ActivityId
stringID 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; }