ExecutionType Enumeration

 
Note: This API is now obsolete.

Specifies the execution mode for activities.

Namespace:   System.Workflow.Activities
Assembly:  System.Workflow.Activities (in System.Workflow.Activities.dll)

[ObsoleteAttribute("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")]
public enum class ExecutionType

Member nameDescription
Parallel

Executes activities in parallel.

Sequence

Executes activities in sequential order. Each activity is executed in turn, after the previous activity has finished running.

System_CAPS_noteNote

This material discusses types and namespaces that are obsolete. For more information, see Deprecated Types in Windows Workflow Foundation 4.5.

The following code example shows how to set the execution mode for activities using the ExecutionType enumeration. This code example is part of the Replicator SDK Sample from the Simplereplicatorworkflow.cs file. For more information, seeUsing Replicator.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: