Table of Contents

Class WorkflowUpdateWithStartOptions

Namespace
Temporalio.Client
Assembly
Temporalio.dll

Options for executing an update with start.

public class WorkflowUpdateWithStartOptions : WorkflowUpdateOptions, ICloneable
Inheritance
WorkflowUpdateWithStartOptions
Implements
Derived
Inherited Members

Remarks

NOTE: StartWorkflowOperation is required.

Constructors

WorkflowUpdateWithStartOptions()

Initializes a new instance of the WorkflowUpdateWithStartOptions class.

public WorkflowUpdateWithStartOptions()

Remarks

NOTE: StartWorkflowOperation is required.

WorkflowUpdateWithStartOptions(string, WithStartWorkflowOperation)

Initializes a new instance of the WorkflowUpdateWithStartOptions class.

public WorkflowUpdateWithStartOptions(string id, WithStartWorkflowOperation startWorkflowOperation)

Parameters

id string

Update ID.

startWorkflowOperation WithStartWorkflowOperation

Workflow start operation.

WorkflowUpdateWithStartOptions(WithStartWorkflowOperation)

Initializes a new instance of the WorkflowUpdateWithStartOptions class.

public WorkflowUpdateWithStartOptions(WithStartWorkflowOperation startWorkflowOperation)

Parameters

startWorkflowOperation WithStartWorkflowOperation

Workflow start operation.

Properties

StartWorkflowOperation

Gets or sets the workflow start operation.

public WithStartWorkflowOperation? StartWorkflowOperation { get; set; }

Property Value

WithStartWorkflowOperation

Remarks

NOTE: This is required.

Methods

Clone()

Create a shallow copy of these options including the start operation.

public override object Clone()

Returns

object

A shallow copy of these options and any transitive options fields.