Files
linux-packaging-mono/mcs/class/referencesource/System.Activities/System/Activities/Statements/IFlowSwitch.cs

13 lines
422 B
C#
Raw Normal View History

//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
namespace System.Activities.Statements
{
interface IFlowSwitch
{
bool Execute(NativeActivityContext context, Flowchart parent);
FlowNode GetNextNode(object value);
}
}