Table of Contents

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 string

Namespace for the parent.

RunId string

Run ID for the parent.

WorkflowId string

Workflow ID for the parent.

Properties

Namespace

Namespace for the parent.

public string Namespace { get; init; }

Property Value

string

RunId

Run ID for the parent.

public string RunId { get; init; }

Property Value

string

WorkflowId

Workflow ID for the parent.

public string WorkflowId { get; init; }

Property Value

string