Table of Contents

Class WorkflowExecutionDescription

Namespace
Temporalio.Client
Assembly
Temporalio.dll

Representation of a workflow execution and description.

public class WorkflowExecutionDescription : WorkflowExecution
Inheritance
WorkflowExecutionDescription
Inherited Members

Constructors

WorkflowExecutionDescription(DescribeWorkflowExecutionResponse, string?, string?, DataConverter)

Initializes a new instance of the WorkflowExecutionDescription class.

protected WorkflowExecutionDescription(DescribeWorkflowExecutionResponse rawDescription, string? staticSummary, string? staticDetails, DataConverter dataConverter)

Parameters

rawDescription DescribeWorkflowExecutionResponse

Raw protobuf description.

staticSummary string

Static summary.

staticDetails string

Static details.

dataConverter DataConverter

Data converter.

Remarks

WARNING: This constructor may be mutated in backwards incompatible ways.

Properties

StaticDetails

Gets the general fixed details for this workflow execution that may appear in UI/CLI. This can be in Temporal markdown format and can span multiple lines.

public string? StaticDetails { get; }

Property Value

string

Remarks

WARNING: This setting is experimental.

StaticSummary

Gets the single-line fixed summary for this workflow execution that may appear in UI/CLI. This can be in single-line Temporal markdown format.

public string? StaticSummary { get; }

Property Value

string

Remarks

WARNING: This setting is experimental.