New test.
[mono.git] / mcs / class / System.Web / System.Web.Management / WebBaseEvent.cs
1 //
2 // System.Web.Management.WebBaseEvent.cs
3 //
4 // Authors:
5 //      Duncan Mak (duncan@ximian.com)
6 //
7 // Permission is hereby granted, free of charge, to any person obtaining
8 // a copy of this software and associated documentation files (the
9 // "Software"), to deal in the Software without restriction, including
10 // without limitation the rights to use, copy, modify, merge, publish,
11 // distribute, sublicense, and/or sell copies of the Software, and to
12 // permit persons to whom the Software is furnished to do so, subject to
13 // the following conditions:
14 // 
15 // The above copyright notice and this permission notice shall be
16 // included in all copies or substantial portions of the Software.
17 // 
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 //
26 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
27 //
28
29 #if NET_2_0
30 using System;
31
32 namespace System.Web.Management
33 {
34         public class WebBaseEvent
35         {
36                 string message;
37                 object event_source;
38                 int event_code, event_detail_code;
39
40                 protected WebBaseEvent (string message, object event_source, int event_code)
41                 {
42                         this.message = message;
43                         this.event_source = event_source;
44                         this.event_code = event_code;
45                 }
46
47                 protected WebBaseEvent (string message, object event_source, int event_code, int event_detail_code)
48                 {
49                         this.message = message;
50                         this.event_source = event_source;
51                         this.event_code = event_code;
52                         this.event_detail_code = event_detail_code;
53                 }
54                 
55                 public static WebApplicationInformation ApplicationInformation {
56                         get {
57                                 throw new NotImplementedException ();
58                         }
59                 }
60
61                 public int EventCode {
62                         get {
63                                 return event_code;
64                         }
65                 }
66
67                 public int EventDetailCode {
68                         get {
69                                 return event_detail_code;
70                         }
71                 }
72
73                 public Guid EventID {
74                         get {
75                                 throw new NotImplementedException ();
76                         }
77                 }
78
79                 public long EventSequence {
80                         get {
81
82                                 throw new NotImplementedException ();
83                         }
84                 }
85
86                 public object EventSource {
87                         get {
88                                 return event_source;
89                         }
90                 }
91
92                 public DateTime EventTime {
93                         get {
94                                 throw new NotImplementedException ();
95                         }
96                 }
97
98                 public DateTime EventTimeUtc {
99                         get {
100                                 throw new NotImplementedException ();
101                         }
102                 }
103
104                 public string Message {
105                         get {
106                                 return message;
107                         }
108                 }
109
110                 public virtual void FormatCustomEventDetails (WebEventFormatter formatter)
111                 {
112                         throw new NotImplementedException ();
113                 }
114
115                 public virtual void Raise ()
116                 {
117                         throw new NotImplementedException ();
118                 }
119
120                 public static void Raise (WebBaseEvent event_raised)
121                 {
122                         throw new NotImplementedException ();
123                 }
124
125                 public override string ToString ()
126                 {
127                         throw new NotImplementedException ();
128                 }
129
130                 public virtual string ToString (bool include_app_info, bool include_custom_event_details)
131                 {
132                         throw new NotImplementedException ();
133                 }
134         }
135 }
136 #endif