Initial commit
[mono.git] / mcs / class / referencesource / System / services / monitoring / system / diagnosticts / OverflowAction.cs
1 namespace System.Diagnostics {
2     public enum OverflowAction {
3         DoNotOverwrite = -1,
4         OverwriteAsNeeded = 0,
5         OverwriteOlder = 1,
6     }
7 }