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

Значение свойства

Имя метода.

Примеры

В следующем образце кода показано задание свойства MethodName для действия 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")
    }
},

Комментарии

Вызываемый метод должен быть объявлен как открытый.

Применяется к