StartOrchestrationArgs 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
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
Azure SDK for .NET