Class PatchActivationInput
- Namespace
- Temporalio.Worker
- Assembly
- Temporalio.dll
Input for PatchActivationCallback.
public record PatchActivationInput : IEquatable<PatchActivationInput>
- Inheritance
-
PatchActivationInput
- Implements
- Inherited Members
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Constructors
PatchActivationInput(WorkflowInfo, string)
Input for PatchActivationCallback.
public PatchActivationInput(WorkflowInfo WorkflowInfo, string PatchId)
Parameters
WorkflowInfoWorkflowInfoInformation about the workflow execution calling Patched(string).
PatchIdstringPatch ID passed to Patched(string).
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Properties
PatchId
Patch ID passed to Patched(string).
public string PatchId { get; init; }
Property Value
WorkflowInfo
Information about the workflow execution calling Patched(string).
public WorkflowInfo WorkflowInfo { get; init; }