InArgument<T>.Implicit Operador
Definição
Sobrecargas
| Implicit(Activity<T> to InArgument<T>) |
Inicializa e retorna um novo InArgument<T> usando o Activity<TResult> especificado.Initializes and returns a new InArgument<T> using the specified Activity<TResult>. |
| Implicit(DelegateArgument to InArgument<T>) |
Inicializa e retorna um novo InArgument<T> usando o DelegateArgument especificado.Initializes and returns a new InArgument<T> using the specified DelegateArgument. |
| Implicit(Variable to InArgument<T>) |
Inicializa e retorna um novo InArgument<T> usando o Variable especificado.Initializes and returns a new InArgument<T> using the specified Variable. |
| Implicit(T to InArgument<T>) |
Inicializa e retorna um novo InArgument<T> usando o valor especificado.Initializes and returns a new InArgument<T> using the specified value. |
Implicit(Activity<T> to InArgument<T>)
Inicializa e retorna um novo InArgument<T> usando o Activity<TResult> especificado.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)
Parâmetros
- expression
- Activity<T>
O valor do argumento.The value of the argument.
Retornos
O novo argumento.The new argument.
Aplica-se a
Implicit(DelegateArgument to InArgument<T>)
Inicializa e retorna um novo InArgument<T> usando o DelegateArgument especificado.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)
Parâmetros
- delegateArgument
- DelegateArgument
O valor do argumento.The value of the argument.
Retornos
O novo argumento.The new argument.
Aplica-se a
Implicit(Variable to InArgument<T>)
Inicializa e retorna um novo InArgument<T> usando o Variable especificado.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)
Parâmetros
- variable
- Variable
O valor do argumento.The value of the argument,
Retornos
O novo argumento.The new argument.
Aplica-se a
Implicit(T to InArgument<T>)
Inicializa e retorna um novo InArgument<T> usando o valor especificado.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)
Parâmetros
- constValue
- T
O valor do argumento.The value of the argument.
Retornos
O novo argumento.The new argument.