InOutArgument<T> 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.
Initializes a new instance of the InOutArgument<T> class.
Overloads
InOutArgument<T>() |
Initializes a new instance of the InOutArgument<T> class using default values. |
InOutArgument<T>(Activity<Location<T>>) |
Initializes a new instance of the InOutArgument<T> class using the specified Activity<TResult>. |
InOutArgument<T>(Variable) |
Initializes a new instance of the InOutArgument<T> class using the specified Variable. |
InOutArgument<T>(Variable<T>) |
Initializes a new instance of the InOutArgument<T> class using the specified Variable<T>. |
InOutArgument<T>(Expression<Func<ActivityContext,T>>) |
Initializes a new instance of the InOutArgument<T> class using the specified expression. |
InOutArgument<T>()
Initializes a new instance of the InOutArgument<T> class using default values.
public:
InOutArgument();
public InOutArgument ();
Public Sub New ()
Applies to
InOutArgument<T>(Activity<Location<T>>)
Initializes a new instance of the InOutArgument<T> class using the specified Activity<TResult>.
public:
InOutArgument(System::Activities::Activity<System::Activities::Location<T> ^> ^ expression);
public InOutArgument (System.Activities.Activity<System.Activities.Location<T>> expression);
new System.Activities.InOutArgument<'T> : System.Activities.Activity<System.Activities.Location<'T>> -> System.Activities.InOutArgument<'T>
Public Sub New (expression As Activity(Of Location(Of T)))
Parameters
Applies to
InOutArgument<T>(Variable)
Initializes a new instance of the InOutArgument<T> class using the specified Variable.
public:
InOutArgument(System::Activities::Variable ^ variable);
public InOutArgument (System.Activities.Variable variable);
new System.Activities.InOutArgument<'T> : System.Activities.Variable -> System.Activities.InOutArgument<'T>
Public Sub New (variable As Variable)
Parameters
- variable
- Variable
The value of the argument.
Applies to
InOutArgument<T>(Variable<T>)
Initializes a new instance of the InOutArgument<T> class using the specified Variable<T>.
public:
InOutArgument(System::Activities::Variable<T> ^ variable);
public InOutArgument (System.Activities.Variable<T> variable);
new System.Activities.InOutArgument<'T> : System.Activities.Variable<'T> -> System.Activities.InOutArgument<'T>
Public Sub New (variable As Variable(Of T))
Parameters
- variable
- Variable<T>
The value of the argument.
Applies to
InOutArgument<T>(Expression<Func<ActivityContext,T>>)
Initializes a new instance of the InOutArgument<T> class using the specified expression.
public:
InOutArgument(System::Linq::Expressions::Expression<Func<System::Activities::ActivityContext ^, T> ^> ^ expression);
public InOutArgument (System.Linq.Expressions.Expression<Func<System.Activities.ActivityContext,T>> expression);
new System.Activities.InOutArgument<'T> : System.Linq.Expressions.Expression<Func<System.Activities.ActivityContext, 'T>> -> System.Activities.InOutArgument<'T>
Public Sub New (expression As Expression(Of Func(Of ActivityContext, T)))
Parameters
- expression
- Expression<Func<ActivityContext,T>>
The value of the argument.