在 C# 的事件日志中使用自定义视图(过滤器)
较新版本的 Windows 可以在事件查看器中定义“自定义视图”(过滤器)。在服务器上,有一个预定义的自定义视图“管理事件”,用于过滤重要的错误和警告。
是否可以从 C# 访问这些视图,即我可以迭代“管理事件”中的所有条目吗?
Newer versions of Windows have the possibilities to define "custom views" (filters) in the event viewer. On servers, there is e.g. a pre-defined custom view "Administrative Events" which filters on important errors and warnings.
Is there a possibility to access these views from C#, i.e. could I iterate all entries in "Administrative Events"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下代码显示了如何使用 System.Diagnostics 命名空间中的 EventLog 和 EventLogEntry 类来访问系统中的不同事件日志的示例。
The following code shows an example of how to use the EventLog and EventLogEntry classes in the System.Diagnostics namespace to access the different event logs in your system.