📄 entrywritteneventargs.cs
字号:
using System;
namespace OpenNETCF.Diagnostics
{
/// <summary>
/// Event arguments for the last entry written to the log EntryWrittenEventArgs.
/// </summary>
public class EntryWrittenEventArgs : System.EventArgs
{
/// <summary>
/// The entry that was just written to the log
/// </summary>
private EventLogEntry eventLogEntry;
/// <summary>
/// Default constructor
/// </summary>
public EntryWrittenEventArgs(EventLogEntry eventLogEntry)
{
this.eventLogEntry = eventLogEntry;
}
/// <summary>
/// The event log entry that was written to the log
/// </summary>
public EventLogEntry EventLogEntry
{
get
{
return this.eventLogEntry;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -