FlowSwitch<T> Class
A specialized FlowNode that allows modeling a switch construct, with one expression and one outcome for each match.
Assembly: System.Activities (in System.Activities.dll)
| Name | Description | |
|---|---|---|
![]() | FlowSwitch<T>() | Creates a new instance of the FlowSwitch<T> class. |
| Name | Description | |
|---|---|---|
![]() | Cases | Gets a dictionary of cases to be processed by the FlowSwitch<T> element. |
![]() | Default | The FlowNode to be executed if no elements in the Cases collection match the result of the evaluation of the Expression. |
![]() | DisplayName | Gets the name of this flow switch to be displayed in the activity designer. |
![]() | Expression | The expression to evaluate against the collection of Cases. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The following code sample demonstrates creating a FlowSwitch<T> node. This example is from the Fault Handling in a Flowchart Activity Using TryCatch sample.
FlowSwitch<string> promoCodeSwitch = new FlowSwitch<string> { Expression = promo, Cases = { { "Single", singleStep }, { "MNK", mnkStep }, { "MWK", mwkStep } }, Default = discountDefault };
Available since 4.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

