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

EventLogEntry.cs « System.Diagnostics « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32fb453325432d4ef3eb9232296ae306d4dbe02e (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
//
// System.Diagnostics.EventLogEntry.cs
//
// Authors:
//   Jonathan Pryor (jonpryor@vt.edu)
//
// (C) 2002
//

using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Runtime.Serialization;

namespace System.Diagnostics {

	[Serializable]
	[MonoTODO("Just stubbed out")]
	public sealed class EventLogEntry : Component, ISerializable {

		[MonoTODO]
		internal EventLogEntry ()
		{
		}

//		[MonoTODO]
//		public string Categery {
//			get {throw new NotImplementedException ();}
//		}
//
//		[MonoTODO]
//		public short CategoryNumber {
//			get {throw new NotImplementedException ();}
//		}
//
//		[MonoTODO]
//		public byte[] Data {
//			get {throw new NotImplementedException ();}
//		}
//
//		[MonoTODO]
//		public EventLogEntryType EntryType {
//			get {throw new NotImplementedException ();}
//		}
//
//		[MonoTODO]
//		public int EventID {
//			get {throw new NotImplementedException ();}
//		}
//
//		[MonoTODO]
//		public int Index {
//			get {throw new NotImplementedException ();}
//		}
//
//		[MonoTODO]
//		public string Machineame {
//			get {throw new NotImplementedException ();}
//		}
//
//		[MonoTODO]
//		public string Message {
//			get {throw new NotImplementedException ();}
//		}
//
//		[MonoTODO]
//		public string[] ReplacementStrings {
//			get {throw new NotImplementedException ();}
//		}
//
//		[MonoTODO]
//		public string Source {
//			get {throw new NotImplementedException ();}
//		}
//
//		[MonoTODO]
//		public DateTime TimeGenerated {
//			get {throw new NotImplementedException ();}
//		}
//
//		[MonoTODO]
//		public DateTime TimeWritten {
//			get {throw new NotImplementedException ();}
//		}
//
//		[MonoTODO]
//		public string UserName {
//			get {throw new NotImplementedException ();}
//		}
//
//		[MonoTODO]
//		public bool Equals(EventLogEntry otherEntry)
//		{
//			throw new NotImplementedException ();
//		}
//
		[MonoTODO]
		void ISerializable.GetObjectData(SerializationInfo info, 
			StreamingContext context)
		{
			throw new NotImplementedException ();
		}
	}
}