Table of Contents

Class ISerializationContext.Workflow

Namespace
Temporalio.Converters
Assembly
Temporalio.dll

Serialization context for workflows. See WithSerializationContext(ISerializationContext) for information on when this is made available to converters and codecs.

public sealed record ISerializationContext.Workflow : ISerializationContext.IHasWorkflow, ISerializationContext, IEquatable<ISerializationContext.Workflow>
Inheritance
ISerializationContext.Workflow
Implements
Inherited Members

Remarks

WARNING: This constructor may have required properties added and is not guaranteed to remain compatible from one version to the next.

Constructors

Workflow(string, string)

Serialization context for workflows. See WithSerializationContext(ISerializationContext) for information on when this is made available to converters and codecs.

public Workflow(string Namespace, string WorkflowId)

Parameters

Namespace string

Workflow namespace.

WorkflowId string

Workflow ID.

Remarks

WARNING: This constructor may have required properties added and is not guaranteed to remain compatible from one version to the next.

Properties

Namespace

Workflow namespace.

public string Namespace { get; init; }

Property Value

string

WorkflowId

Workflow ID.

public string WorkflowId { get; init; }

Property Value

string