OverflowAction
Specifies how to handle entries in an event log that has reached its maximum file size.
namespace System.Diagnostics
{
public enum OverflowAction
{
DoNotOverwrite = -1,
OverwriteAsNeeded,
OverwriteOlder
}
}