Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EntryWrittenEventArgs.cs « System.Diagnostics « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21e007dbe84e1fe89e0501451c6e5020b13b9fc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// System.Diagnostics.EntryWrittenEventArgs.cs
//
// Authors:
//   Jonathan Pryor (jonpryor@vt.edu)
//
// (C) 2002
//

using System;
using System.Diagnostics;
using System.Runtime.InteropServices;

namespace System.Diagnostics {

	public class EntryWrittenEventArgs : EventArgs {

		private EventLogEntry entry;

		public EntryWrittenEventArgs () : this (null)
		{
		}

		public EntryWrittenEventArgs (EventLogEntry entry)
		{
			this.entry = entry;
		}

		public EventLogEntry Entry {
			get {return entry;}
		}
	}
}