InvokeMethod 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立 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")
}
},