Fix from Matt Kunze to add the other Process.Start overloads
[mono.git] / mcs / class / System / System.Diagnostics / EventLogEntry.cs
1 //
2 // System.Diagnostics.EventLogEntry.cs
3 //
4 // Authors:
5 //   Jonathan Pryor (jonpryor@vt.edu)
6 //
7 // (C) 2002
8 //
9
10 using System;
11 using System.ComponentModel;
12 using System.Diagnostics;
13 using System.Runtime.Serialization;
14
15 namespace System.Diagnostics {
16
17         [Serializable]
18         [MonoTODO("Just stubbed out")]
19         public sealed class EventLogEntry : Component, ISerializable {
20
21                 [MonoTODO]
22                 internal EventLogEntry ()
23                 {
24                 }
25
26 //              [MonoTODO]
27 //              public string Categery {
28 //                      get {throw new NotImplementedException ();}
29 //              }
30 //
31 //              [MonoTODO]
32 //              public short CategoryNumber {
33 //                      get {throw new NotImplementedException ();}
34 //              }
35 //
36 //              [MonoTODO]
37 //              public byte[] Data {
38 //                      get {throw new NotImplementedException ();}
39 //              }
40 //
41 //              [MonoTODO]
42 //              public EventLogEntryType EntryType {
43 //                      get {throw new NotImplementedException ();}
44 //              }
45 //
46 //              [MonoTODO]
47 //              public int EventID {
48 //                      get {throw new NotImplementedException ();}
49 //              }
50 //
51 //              [MonoTODO]
52 //              public int Index {
53 //                      get {throw new NotImplementedException ();}
54 //              }
55 //
56 //              [MonoTODO]
57 //              public string Machineame {
58 //                      get {throw new NotImplementedException ();}
59 //              }
60 //
61 //              [MonoTODO]
62 //              public string Message {
63 //                      get {throw new NotImplementedException ();}
64 //              }
65 //
66 //              [MonoTODO]
67 //              public string[] ReplacementStrings {
68 //                      get {throw new NotImplementedException ();}
69 //              }
70 //
71 //              [MonoTODO]
72 //              public string Source {
73 //                      get {throw new NotImplementedException ();}
74 //              }
75 //
76 //              [MonoTODO]
77 //              public DateTime TimeGenerated {
78 //                      get {throw new NotImplementedException ();}
79 //              }
80 //
81 //              [MonoTODO]
82 //              public DateTime TimeWritten {
83 //                      get {throw new NotImplementedException ();}
84 //              }
85 //
86 //              [MonoTODO]
87 //              public string UserName {
88 //                      get {throw new NotImplementedException ();}
89 //              }
90 //
91 //              [MonoTODO]
92 //              public bool Equals(EventLogEntry otherEntry)
93 //              {
94 //                      throw new NotImplementedException ();
95 //              }
96 //
97                 [MonoTODO]
98                 void ISerializable.GetObjectData(SerializationInfo info, 
99                         StreamingContext context)
100                 {
101                         throw new NotImplementedException ();
102                 }
103         }
104 }
105