.NET 支持 Windows Eventing 6.0 吗?
我想使用 C# 应用程序中的 Windows Eventing 6 API 将消息记录到 Windows Server 2008 事件日志中的特定通道。 有一个关于如何使用它的很好的例子,但它只是 C++。 在示例中提到.NET 不支持 Windows Eventing 6。 http://msdn.microsoft.com/en-us/magazine/cc163431.aspx , http://msdn.microsoft.com/en-us/library/aa382690(VS.85).aspx
我的问题是如何在C# 或者您知道是否有对此 API 的 .Net 支持。
I want to use the Windows Eventing 6 API from a C# application to log messages to a specific channel in Windows Server 2008 event log. There is a good example on how to use it but it's only C++. In the example it's mentioned that .NET doesn't support Windows Eventing 6. There are 2 examples in http://msdn.microsoft.com/en-us/magazine/cc163431.aspx , http://msdn.microsoft.com/en-us/library/aa382690(VS.85).aspx
My question is how to do it in C# or do you know if there is a .Net support for this API.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你问的是 ETW 的事情。
检查:
使用 System.Diagnostics.Eventing 写入事件
以及更多信息:
.NET 事件Windows 跟踪,Naveen 的博客 ETW系列(具体为将 .NET 4.0 Windows 事件跟踪 (ETW) 与应用程序 ETW 一起使用),.NET Framework 中的 ETW 事件,TraceEvent
还有一些信息如果您也感兴趣,请了解常规事件记录:
事件日志,EventLogInstaller。 示例:事件记录
I think you ask about ETW stuff.
Check:
Writing events with System.Diagnostics.Eventing
and some more info:
.NET Event Tracing for Windows, Naveen's Blog ETW Series (specificly Using .NET 4.0 Event Tracing for Windows (ETW) along with application ETW), ETW Events in the .NET Framework, TraceEvent
Also some info about regular event logging in case you interested too:
EventLog, EventLogInstaller. Example: Event Logging