Class WorkflowInfo.ParentInfo
- Namespace
- Temporalio.Workflows
- Assembly
- Temporalio.dll
Information about a parent of a workflow.
public record WorkflowInfo.ParentInfo : IEquatable<WorkflowInfo.ParentInfo>
- Inheritance
-
WorkflowInfo.ParentInfo
- Implements
- Inherited Members
Constructors
ParentInfo(string, string, string)
Information about a parent of a workflow.
public ParentInfo(string Namespace, string RunId, string WorkflowId)
Parameters
Namespace
stringNamespace for the parent.
RunId
stringRun ID for the parent.
WorkflowId
stringWorkflow ID for the parent.
Properties
Namespace
Namespace for the parent.
public string Namespace { get; init; }
Property Value
RunId
Run ID for the parent.
public string RunId { get; init; }
Property Value
WorkflowId
Workflow ID for the parent.
public string WorkflowId { get; init; }