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

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); } } }