dd07d2071d06a8956de6c8515c6ffa78e04b94bf
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Debugger / BreakpointType.cs
1 //-----------------------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //-----------------------------------------------------------------------------
4 namespace System.Activities.Presentation.Debug
5 {
6     using System;
7     [Flags]
8     public enum BreakpointTypes
9     {
10         None    = 0x00,
11         Enabled = 0x01,
12         Bounded = 0x02,
13         Conditional = 0x04
14     }
15 }