InArgument<T>.Implicit Operator
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
Implicit(Activity<T> to InArgument<T>) |
Initializes and returns a new InArgument<T> using the specified Activity<TResult>. |
Implicit(DelegateArgument to InArgument<T>) |
Initializes and returns a new InArgument<T> using the specified DelegateArgument. |
Implicit(Variable to InArgument<T>) |
Initializes and returns a new InArgument<T> using the specified Variable. |
Implicit(T to InArgument<T>) |
Initializes and returns a new InArgument<T> using the specified value. |
Implicit(Activity<T> to InArgument<T>)
Initializes and returns a new InArgument<T> using the specified Activity<TResult>.
public:
static operator System::Activities::InArgument<T> ^(System::Activities::Activity<T> ^ expression);
public static implicit operator System.Activities.InArgument<T> (System.Activities.Activity<T> expression);
static member op_Implicit : System.Activities.Activity<'T> -> System.Activities.InArgument<'T>
Public Shared Widening Operator CType (expression As Activity(Of T)) As InArgument(Of T)
Parameters
- expression
- Activity<T>
The value of the argument.
Returns
The new argument.
Applies to
Implicit(DelegateArgument to InArgument<T>)
Initializes and returns a new InArgument<T> using the specified DelegateArgument.
public:
static operator System::Activities::InArgument<T> ^(System::Activities::DelegateArgument ^ delegateArgument);
public static implicit operator System.Activities.InArgument<T> (System.Activities.DelegateArgument delegateArgument);
static member op_Implicit : System.Activities.DelegateArgument -> System.Activities.InArgument<'T>
Public Shared Widening Operator CType (delegateArgument As DelegateArgument) As InArgument(Of T)
Parameters
- delegateArgument
- DelegateArgument
The value of the argument.
Returns
The new argument.
Applies to
Implicit(Variable to InArgument<T>)
Initializes and returns a new InArgument<T> using the specified Variable.
public:
static operator System::Activities::InArgument<T> ^(System::Activities::Variable ^ variable);
public static implicit operator System.Activities.InArgument<T> (System.Activities.Variable variable);
static member op_Implicit : System.Activities.Variable -> System.Activities.InArgument<'T>
Public Shared Widening Operator CType (variable As Variable) As InArgument(Of T)
Parameters
- variable
- Variable
The value of the argument.
Returns
The new argument.
Applies to
Implicit(T to InArgument<T>)
Initializes and returns a new InArgument<T> using the specified value.
public:
static operator System::Activities::InArgument<T> ^(T constValue);
public static implicit operator System.Activities.InArgument<T> (T constValue);
static member op_Implicit : 'T -> System.Activities.InArgument<'T>
Public Shared Widening Operator CType (constValue As T) As InArgument(Of T)
Parameters
- constValue
- T
The value of the argument.
Returns
The new argument.