TaskOrchestrationContext.GetInput<T> Method
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.
Gets the deserialized input of the orchestrator.
public abstract T? GetInput<T> ();
abstract member GetInput : unit -> 'T
Public MustOverride Function GetInput(Of T) () As T
Type Parameters
- T
The expected type of the orchestrator input.
Returns
T
Returns the deserialized input as an object of type T
or null
if no input was
provided.