entrywritteneventargs.cs

来自「蓝牙通讯」· CS 代码 · 共 36 行

CS
36
字号
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 + =
减小字号Ctrl + -
显示快捷键?