<PackageReference Include="System.Diagnostics.EventLog" Version="6.0.0" />

EventLogConfiguration

using System.Collections.Generic; namespace System.Diagnostics.Eventing.Reader { public class EventLogConfiguration : IDisposable { public bool IsClassicLog { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public bool IsEnabled { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public string LogFilePath { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public EventLogIsolation LogIsolation { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public EventLogMode LogMode { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public string LogName { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public EventLogType LogType { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public long MaximumSizeInBytes { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public string OwningProviderName { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public int? ProviderBufferSize { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public Guid? ProviderControlGuid { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public long? ProviderKeywords { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public int? ProviderLatency { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public int? ProviderLevel { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public int? ProviderMaximumNumberOfBuffers { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public int? ProviderMinimumNumberOfBuffers { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public IEnumerable<string> ProviderNames { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public string SecurityDescriptor { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public EventLogConfiguration(string logName) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } public EventLogConfiguration(string logName, EventLogSession session) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } public void Dispose() { } protected virtual void Dispose(bool disposing) { } public void SaveChanges() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } }