FlowStep::Next Property
.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)
public: [DependsOnAttribute("Action")] property FlowNode^ Next { FlowNode^ get(); void set(FlowNode^ value); }
The following code sample demonstrates using the Next property of 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
Show: