<PackageReference Include="System.Diagnostics.EventLog" Version="5.0.0-preview.3.20214.6" />

EntryWrittenEventArgs

Provides data for the EntryWritten event.
namespace System.Diagnostics { public class EntryWrittenEventArgs : EventArgs { public EventLogEntry Entry { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } public EntryWrittenEventArgs() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } public EntryWrittenEventArgs(EventLogEntry entry) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } } }