InvokeMethod Costruttore

Definizione

Crea una nuova istanza della classe InvokeMethod.

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

Esempio

Nell'esempio di codice riportato di seguito viene illustrata la creazione di un'attività InvokeMethod. Questo esempio è tratto dall'esempio Using the InvokeMethod Activity .This example is from the Using the InvokeMethod Activity sample.

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

Si applica a