Flow Switch <T> Activity

Description:

A specialized FlowNode that allows you to model a switch construct with one expression and one outcome for each match.

Inheritance Hierarchy:

System.Object
  System.Activities.Statements.FlowNode
    System.Activities.Statements.Switch<T>

Function:

A FlowChart control flow element, similar to a Switch activity, that passes execution to one of several possible child elements based on the value of the given expression. Output connections from a FlowSwitch represent either a discrete value case, i.e. the child element is executed if the FlowSwitch expression evaluates to the particular case value assigned to the connection, or a default case, i.e. the child element is executed if the expression evaluates to a value that does not match any case value for any other output connection. The case value or “Default” appears on the connector that branches to a child activity.

Properties:

Name Description

Expression

The expression that evaluates to a value of type T.

Version Information:

Supported from: Geocortex Essentials 3.0.

For more information:

https://msdn.microsoft.com/en-us/library/ee390735.aspx