ExpansionKind Enumeration
ExpansionKind is an enumeration type used to specify how multiple executions of an expansion region interact.
Namespace: Microsoft.VisualStudio.Uml.Activities
Assembly: Microsoft.VisualStudio.Uml.Interfaces (in Microsoft.VisualStudio.Uml.Interfaces.dll)
Syntax
[CLSCompliantAttribute(true)]
public enum ExpansionKind
[CLSCompliantAttribute(true)]
public enum class ExpansionKind
[<CLSCompliantAttribute(true)>]
type ExpansionKind
<CLSCompliantAttribute(True)>
Public Enumeration ExpansionKind
Members
Member name | Description | |
---|---|---|
Iterative | The executions are dependent and must be executed one at a time, in order of the collection elements. |
|
Parallel | The executions are independent. They may be executed concurrently. |
|
Stream | A stream of collection elements flows into a single execution, in order of the collection elements. |
Remarks
Note
The methods defined on this type are extension methods. To use the methods, you must add a project reference to the .NET assembly Microsoft.VisualStudio.ArchitectureTools.Extensibility.dll, and you must include the directive using Microsoft.VisualStudio.ArchitectureTools.Extensibility.Uml; in your code.
See Also
Microsoft.VisualStudio.Uml.Activities Namespace
Return to top