InvokeWorkflow Class

MS Activities Extensions

Collapse imageExpand ImageCopy imageCopyHover image
Activity that invokes another workflow using WorkflowInvoker

Namespace: Microsoft.Activities.Extensions.Statements
Assembly: Microsoft.Activities.Extensions (in Microsoft.Activities.Extensions.dll) Version: 2.0.6.9 (2.0.6.9)

Syntax

C#
public sealed class InvokeWorkflow : AsyncCodeActivity<IDictionary<string, Object>>
Visual Basic
Public NotInheritable Class InvokeWorkflow _
	Inherits AsyncCodeActivity(Of IDictionary(Of String, Object))
Visual C++
public ref class InvokeWorkflow sealed : public AsyncCodeActivity<IDictionary<String^, Object^>^>

Remarks

The other workflow is subject to the rules of WorkflowInvoker (no bookmarks). The activity will invoke the other workflow an wait for it to complete before returning. Persistence is not allowed while the other workflow is invoked

Inheritance Hierarchy

System..::..Object
  System.Activities..::..Activity
    System.Activities..::..ActivityWithResult
      System.Activities..::..Activity<(Of <(<'IDictionary<(Of <(<'String, Object>)>)>>)>)>
        System.Activities..::..AsyncCodeActivity<(Of <(<'IDictionary<(Of <(<'String, Object>)>)>>)>)>
          Microsoft.Activities.Extensions.Statements..::..InvokeWorkflow

See Also