次の方法で共有


InvokeMethod.Parameters プロパティ

定義

呼び出されるメソッドの パラメーター コレクション。

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

プロパティ値

パラメーター コレクション。

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

new InvokeMethod
{
    TargetObject = new InArgument<TestClass>(ctx => testClass),
    MethodName = "InstanceMethod",
    Parameters =
    {
        new InArgument<string>("My favorite number is"),
        new InArgument<int>(42),
        new InArgument<string>("first item of the param array"),
        new InArgument<string>("second item of the param array"),
        new InArgument<string>("third item of the param array")
    }
},

注釈

パラメーターは、メソッド シグネチャ内で出現する順序でコレクションに追加する必要があります。 パラメーターに名前を付 TargetObject けたり、 を指定したり Resultすることはできません。

適用対象