次の方法で共有


InvokeMethod コンストラクター

定義

InvokeMethod クラスの新しいインスタンスを作成します。

public:
 InvokeMethod();
public InvokeMethod ();
Public Sub New ()

InvokeMethod アクティビティを作成するコード サンプルを次に示します。 この例は、 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")
    }
},

適用対象