InvokeMethod.RunAsynchronously Property

Definition

Gets or sets a value that indicates whether the activity's method is invoked asynchronously.

public:
 property bool RunAsynchronously { bool get(); void set(bool value); };
public bool RunAsynchronously { get; set; }
member this.RunAsynchronously : bool with get, set
Public Property RunAsynchronously As Boolean

Property Value

true if the method executes asynchronously.

Examples

The following code sample demonstrates setting the RunAsynchronously property of an InvokeMethod activity. This example is from the Using the InvokeMethod Activity sample.

new InvokeMethod
{
    TargetObject = new InArgument<TestClass>(ctx => testClass),
    MethodName = "AsyncMethodSample",
    RunAsynchronously = true,
    Parameters =
    {
        new InArgument<string>("Hello async"),
    }
},

Applies to