StartOrchestrationOptions Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- original
- StartOrchestrationOptions
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.