다음을 통해 공유


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

적용 대상