次の方法で共有


InvokeMethod.MethodName プロパティ

定義

アクティビティの実行時に呼び出すメソッドの名前。

public:
 property System::String ^ MethodName { System::String ^ get(); void set(System::String ^ value); };
public string MethodName { get; set; }
member this.MethodName : string with get, set
Public Property MethodName As String

プロパティ値

メソッド名。

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

注釈

呼び出されたメソッドは、パブリックとして宣言する必要があります。

適用対象