Class WorkflowUpdateInfo
- Namespace
- Temporalio.Workflows
- Assembly
- Temporalio.dll
Information about the current update. This set via a AsyncLocal<T> and therefore only visible inside the handler and tasks it creates.
public record WorkflowUpdateInfo : IEquatable<WorkflowUpdateInfo>
- Inheritance
-
WorkflowUpdateInfo
- Implements
- Inherited Members
Remarks
WARNING: Workflow update is experimental and APIs may change.
Constructors
WorkflowUpdateInfo(string, string)
Information about the current update. This set via a AsyncLocal<T> and therefore only visible inside the handler and tasks it creates.
public WorkflowUpdateInfo(string Id, string Name)
Parameters
Remarks
WARNING: Workflow update is experimental and APIs may change.
Properties
Id
Current update ID.
public string Id { get; init; }
Property Value
Name
Current update name.
public string Name { get; init; }