EventLogIsolation
Defines the default access permissions for the event log. The Application and System values indicate that the log shares the access control list (ACL) with the appropriate Windows log (the Application or System event logs) and share the Event Tracing for Windows (ETW) session with other logs of the same isolation. All channels with Custom isolation use a private ETW session.
namespace System.Diagnostics.Eventing.Reader
{
public enum EventLogIsolation
{
Application,
System,
Custom
}
}