7 references to Information
Microsoft.Extensions.Logging.EventLog (2)
EventLogLogger.cs (2)
192
return EventLogEntryType.
Information
;
199
return EventLogEntryType.
Information
;
System.Diagnostics.EventLog (4)
System\Diagnostics\EventData.cs (1)
11
private EventLogEntryType _entryType = EventLogEntryType.
Information
;
System\Diagnostics\EventLog.cs (2)
977
WriteEntry(message, EventLogEntryType.
Information
, (short)0, 0, null);
982
WriteEntry(source, message, EventLogEntryType.
Information
, (short)0, 0, null);
System\Diagnostics\EventLogTraceListener.cs (1)
174
data.EntryType = EventLogEntryType.
Information
;
System.ServiceProcess.ServiceController (1)
System\ServiceProcess\ServiceBase.cs (1)
949
private void WriteLogEntry(string message, EventLogEntryType type = EventLogEntryType.
Information
)