StartChildWorkflow.InputParameters Property
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 or sets the input parameters.
public:
property System::Activities::InArgument<System::Collections::Generic::Dictionary<System::String ^, System::Object ^> ^> ^ InputParameters { System::Activities::InArgument<System::Collections::Generic::Dictionary<System::String ^, System::Object ^> ^> ^ get(); void set(System::Activities::InArgument<System::Collections::Generic::Dictionary<System::String ^, System::Object ^> ^> ^ value); };
[System.ComponentModel.Description("Input parameters of the child workflow.")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification="We need a dictionary to pass the input arguments to the WorkflowApplication while invoking the child workflow", MessageId="")]
public System.Activities.InArgument<System.Collections.Generic.Dictionary<string,object>> InputParameters { get; set; }
[<System.ComponentModel.Description("Input parameters of the child workflow.")>]
[<System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification="We need a dictionary to pass the input arguments to the WorkflowApplication while invoking the child workflow", MessageId="")>]
member this.InputParameters : System.Activities.InArgument<System.Collections.Generic.Dictionary<string, obj>> with get, set
Public Property InputParameters As InArgument(Of Dictionary(Of String, Object))
Property Value
The input parameters.
- Attributes