FlowStep Class
.NET Framework (current version)
Namespace:
System.Activities.Statements
Assembly: System.Activities (in System.Activities.dll)
Return to top
Assembly: System.Activities (in System.Activities.dll)
| Name | Description | |
|---|---|---|
![]() | FlowStep() | Returns a new instance of the FlowStep class. |
| 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 FlowStep node. This example is from the Fault Handling in a Flowchart Activity Using TryCatch sample.
FlowStep singleStep = new FlowStep { Action = new Assign { DisplayName = "discount = 10.0", To = new OutArgument<double> (discount), Value = new InArgument<double> (10.0) }, Next = flowDecision };
.NET Framework
Available since 4.0
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.
Show:

