다음을 통해 공유


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")
    }
},

설명

호출된 메서드를 public으로 선언해야 합니다.

적용 대상