Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 EventLog 类来查询本地计算机中的事件日志条目。但我无法确定在此处应用过滤器的方法。我只想查询具有特定事件 ID 的错误事件类型。这门课可以吗?或者我应该使用不同的方法?
您可以使用 EventLogEntry 类中的 EventLogEntryType 来比较事件类型。
EventLogEntry evntEntry; //Fill it using your own code like loading from event log list if(evntEntry.EntryType == EventLogEntryType.Error) { // }
您还可以使用“EventID”属性以类似的方式添加事件 ID 检查