Sdílet prostřednictvím


StartOrchestrationArgs Constructors

Definition

Overloads

StartOrchestrationArgs()

Initializes a new instance of the StartOrchestrationArgs class.

StartOrchestrationArgs(String, Object)

Initializes a new instance of the StartOrchestrationArgs class.

StartOrchestrationArgs()

Source:
StartOrchestrationArgs.cs

Initializes a new instance of the StartOrchestrationArgs class.

public StartOrchestrationArgs ();
Public Sub New ()

Applies to

StartOrchestrationArgs(String, Object)

Source:
StartOrchestrationArgs.cs

Initializes a new instance of the StartOrchestrationArgs class.

public StartOrchestrationArgs (string functionName, object input);
new Microsoft.Azure.WebJobs.Extensions.DurableTask.StartOrchestrationArgs : string * obj -> Microsoft.Azure.WebJobs.Extensions.DurableTask.StartOrchestrationArgs
Public Sub New (functionName As String, input As Object)

Parameters

functionName
String

The name of the orchestrator function to start.

input
Object

The JSON-serializeable input for the orchestrator function.

Applies to