使用 C# 修改事件日志

发布于 2024-11-03 08:54:50 字数 306 浏览 3 评论 0原文

我需要使用 EventLog API 从 Windows 事件日志中读取条目,对其进行修改并覆盖该日志条目。 例如:如果我这样做:

log.Entries[0].Message = "Custom Message";

然后我收到一条错误消息

“Error1 Property or indexer 'System.Diagnostics.EventLogEntry.Message'无法分配给 - 它是只读的”

有没有其他方法可以做到这一点?

提前致谢, 基兰

I need to read an entry from Windows Event Logs using the EventLog API, modify it and over-write that log entry.
For e.g.: if I do something like this:

log.Entries[0].Message = "Custom Message";

Then I get an error saying

"Error1 Property or indexer 'System.Diagnostics.EventLogEntry.Message' cannot be assigned to -- it is read only"

Is there any other way to do this?

Thanks in advance,
Kiran

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

未蓝澄海的烟 2024-11-10 08:54:50

不可以,事件日志无法修改。 ReadOnly 控件就是因为这个。

您可以创建新日志或清除当前记录的项目,但不能修改现有的记录项目!这是隐私控制

No, Event logs can not be modified. the ReadOnly control is because of this.

You can create new logs or clear current logged items, but you can not modify an existing logged item! this is a privacy control

那些过往 2024-11-10 08:54:50

使用静态 EventLog 类编写 Windows 事件日志。

示例代码:

EventLog.WriteEntry( "your message", EventLogEntryType.<<yourtype>>);

有关详细信息,请参阅文档 (http://msdn .microsoft.com/en-us/library/system.diagnostics.eventlog.aspx)。

Write a Windows Event Logentry with the static EventLog Class.

Examplecode :

EventLog.WriteEntry( "your message", EventLogEntryType.<<yourtype>>);

For further information please consult the documentation (http://msdn.microsoft.com/en-us/library/system.diagnostics.eventlog.aspx).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文