InArgument<T>.Implicit 演算子

定義

オーバーロード

Implicit(Activity<T> to InArgument<T>)

指定した InArgument<T> を使用して、新しい Activity<TResult> を初期化して返します。

Implicit(DelegateArgument to InArgument<T>)

指定した InArgument<T> を使用して、新しい DelegateArgument を初期化して返します。

Implicit(Variable to InArgument<T>)

指定した InArgument<T> を使用して、新しい Variable を初期化して返します。

Implicit(T to InArgument<T>)

指定した値を使用して、新しい InArgument<T> を初期化して返します。

Implicit(Activity<T> to InArgument<T>)

指定した InArgument<T> を使用して、新しい 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)

パラメーター

expression
Activity<T>

引数の値です。

戻り値

新しい引数。

適用対象

Implicit(DelegateArgument to InArgument<T>)

指定した InArgument<T> を使用して、新しい 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)

パラメーター

delegateArgument
DelegateArgument

引数の値です。

戻り値

新しい引数。

適用対象

Implicit(Variable to InArgument<T>)

指定した InArgument<T> を使用して、新しい 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)

パラメーター

variable
Variable

引数の値です。

戻り値

新しい引数。

適用対象

Implicit(T to InArgument<T>)

指定した値を使用して、新しい InArgument<T> を初期化して返します。

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)

パラメーター

constValue
T

引数の値です。

戻り値

新しい引数。

適用対象