* EntryWrittenEventArgs.cs: Implemented
[mono.git] / mcs / class / System / System.Diagnostics / EventLogTraceListener.cs
1 //
2 // System.Diagnostics.EventLogTraceListener.cs
3 //
4 // Authors:
5 //   Jonathan Pryor (jonpryor@vt.edu)
6 //
7 // (C) 2002 Jonathan Pryor
8 //
9
10
11 using System;
12 using System.Collections;
13 using System.Diagnostics;
14
15 namespace System.Diagnostics {
16
17         [MonoTODO]
18         public class EventLogTraceListener : TraceListener {
19
20 //              [MonoTODO]
21 //              public EventLogTraceListener()
22 //              {
23 //                      throw new NotImplementedException();
24 //              }
25 //
26 //              [MonoTODO]
27 //              public EventLogTraceListener(EventLog eventLog)
28 //              {
29 //                      throw new NotImplementedException();
30 //              }
31 //
32 //              [MonoTODO]
33 //              public EventLogTraceListener(string source)
34 //              {
35 //                      throw new NotImplementedException();
36 //              }
37 //
38 //              [MonoTODO]
39 //              public EventLog EventLog {
40 //                      get {throw new NotImplementedException();}
41 //                      set {throw new NotImplementedException();}
42 //              }
43 //
44 //              [MonoTODO]
45 //              public override string Name {
46 //                      get {throw new NotImplementedException();}
47 //                      set {throw new NotImplementedException();}
48 //              }
49 //
50 //              [MonoTODO]
51 //              public override void Close()
52 //              {
53 //                      throw new NotImplementedException();
54 //              }
55 //
56 //              [MonoTODO]
57 //              protected override void Dispose(bool disposing)
58 //              {
59 //                      throw new NotImplementedException();
60 //              }
61 //
62                 [MonoTODO]
63                 public override void Write(string message)
64                 {
65                         throw new NotImplementedException();
66                 }
67
68                 [MonoTODO]
69                 public override void WriteLine(string message)
70                 {
71                         throw new NotImplementedException();
72                 }
73         }
74 }
75