Table of Contents

Class StartUpdateWithStartWorkflowInput

Namespace
Temporalio.Client.Interceptors
Assembly
Temporalio.dll
public record StartUpdateWithStartWorkflowInput : IEquatable<StartUpdateWithStartWorkflowInput>
Inheritance
StartUpdateWithStartWorkflowInput
Implements
Inherited Members

Remarks

WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.

Constructors

StartUpdateWithStartWorkflowInput(string, IReadOnlyCollection<object?>, WorkflowStartUpdateWithStartOptions, IDictionary<string, Payload>?)

public StartUpdateWithStartWorkflowInput(string Update, IReadOnlyCollection<object?> Args, WorkflowStartUpdateWithStartOptions Options, IDictionary<string, Payload>? Headers)

Parameters

Update string

Update name.

Args IReadOnlyCollection<object>

Update arguments.

Options WorkflowStartUpdateWithStartOptions

Options.

Headers IDictionary<string, Payload>

Headers if any for the update. These will be encoded using the codec before sent to the server. Note these are the update headers, start headers are in the start operation.

Remarks

WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.

Properties

Args

Update arguments.

public IReadOnlyCollection<object?> Args { get; init; }

Property Value

IReadOnlyCollection<object>

Headers

Headers if any for the update. These will be encoded using the codec before sent to the server. Note these are the update headers, start headers are in the start operation.

public IDictionary<string, Payload>? Headers { get; init; }

Property Value

IDictionary<string, Payload>

Options

Options.

public WorkflowStartUpdateWithStartOptions Options { get; init; }

Property Value

WorkflowStartUpdateWithStartOptions

Update

Update name.

public string Update { get; init; }

Property Value

string