File: services\monitoring\system\diagnosticts\OverflowAction.cs
Project: ndp\fx\src\System.csproj (System)
namespace System.Diagnostics {
    public enum OverflowAction {
        DoNotOverwrite = -1,
        OverwriteAsNeeded = 0,
        OverwriteOlder = 1,
    }
}