环境:Windows 10上的VS2017,目标框架.NET4.0
我开发了一个在eventlog
中也写入条目的应用程序。这是我的问题:
EventLog.WriteEntry("Application", "sample entry (type 'Information')", EventLogEntryType.Information, 0)
上面的代码示例运行良好,应用程序事件日志中有一个新条目,其前面带有Information-icon
。在EventLogEntryType.Error
和EventLogEntryType.Warning
上相同。前面有漂亮的“错误”和“警告”图标。
但是,如果我尝试这样做:
EventLog.WriteEntry("Application", "sample entry (type 'SuccessAudit')", EventLogEntryType.SuccessAudit, 0)
事件日志中的是一个新条目,但其前面带有错误的图标类型Information
,而不是漂亮的Key-icon
。但是为什么呢?