Compartilhar via


StartOrchestrationOptions Constructors

Definition

Overloads

StartOrchestrationOptions(StartOrchestrationOptions)
StartOrchestrationOptions(String, Nullable<DateTimeOffset>)

Options for submitting new orchestrations via the client.

StartOrchestrationOptions(StartOrchestrationOptions)

protected StartOrchestrationOptions (Microsoft.DurableTask.StartOrchestrationOptions original);
Protected Sub New (original As StartOrchestrationOptions)

Parameters

Applies to

StartOrchestrationOptions(String, Nullable<DateTimeOffset>)

Options for submitting new orchestrations via the client.

public StartOrchestrationOptions (string? InstanceId = default, DateTimeOffset? StartAt = default);
new Microsoft.DurableTask.StartOrchestrationOptions : string * Nullable<DateTimeOffset> -> Microsoft.DurableTask.StartOrchestrationOptions
Public Sub New (Optional InstanceId As String = Nothing, Optional StartAt As Nullable(Of DateTimeOffset) = Nothing)

Parameters

InstanceId
String

The unique ID of the orchestration instance to schedule. If not specified, a new GUID value is used.

StartAt
Nullable<DateTimeOffset>

The time when the orchestration instance should start executing. If not specified or if a date-time in the past is specified, the orchestration instance will be scheduled immediately.

Applies to