次の方法で共有


InvokeMethod.GenericTypeArguments プロパティ

定義

格納されているメソッドのジェネリック型引数。

public:
 property System::Collections::ObjectModel::Collection<Type ^> ^ GenericTypeArguments { System::Collections::ObjectModel::Collection<Type ^> ^ get(); };
public System.Collections.ObjectModel.Collection<Type> GenericTypeArguments { get; }
member this.GenericTypeArguments : System.Collections.ObjectModel.Collection<Type>
Public ReadOnly Property GenericTypeArguments As Collection(Of Type)

プロパティ値

引数。

InvokeMethod アクティビティの GenericTypeArguments を設定するコード サンプルを次に示します。 この例は、 InvokeMethod アクティビティの使用 サンプルからのものです。

new InvokeMethod
{
    TargetObject = new InArgument<TestClass>(ctx => testClass),
    MethodName = "GenericInstanceMethod",
    GenericTypeArguments = { typeof(string) },
    Parameters =
    {
        new InArgument<string>("Hello world")
    }
},

注釈

ジェネリック型引数は、呼び出されたメソッドがジェネリックの場合にのみ設定する必要があります。

適用対象