(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Web / System.Web.Management / WebBaseEvent.cs
blobd27e946290476870d5302aea0beb1a78d7c9bcc6
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.
26 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
29 #if NET_2_0
30 using System;
32 namespace System.Web.Management
34 public class WebBaseEvent
36 string message;
37 object event_source;
38 int event_code, event_detail_code;
40 public WebBaseEvent (string message, object event_source, int event_code)
42 this.message = message;
43 this.event_source = event_source;
44 this.event_code = event_code;
47 public WebBaseEvent (string message, object event_source, int event_code, int event_detail_code)
49 this.message = message;
50 this.event_source = event_source;
51 this.event_code = event_code;
52 this.event_detail_code = event_detail_code;
55 public static WebApplicationInformation ApplicationInformation {
56 get {
57 throw new NotImplementedException ();
61 public int EventCode {
62 get {
63 return event_code;
67 public int EventDetailCode {
68 get {
69 return event_detail_code;
73 public Guid EventId {
74 get {
75 throw new NotImplementedException ();
79 public long EventSequence {
80 get {
82 throw new NotImplementedException ();
86 public object EventSource {
87 get {
88 return event_source;
92 public DateTime EventTime {
93 get {
94 throw new NotImplementedException ();
98 public DateTime EventTimeUtc {
99 get {
100 throw new NotImplementedException ();
104 public string Message {
105 get {
106 return message;
110 public virtual void FormatCustomEventDetails (WebEventFormatter formatter)
112 throw new NotImplementedException ();
115 public virtual void Raise ()
117 throw new NotImplementedException ();
120 public static void Raise (WebBaseEvent event_raised)
122 throw new NotImplementedException ();
125 public override string ToString ()
127 throw new NotImplementedException ();
130 public string ToString (bool include_app_info, bool include_custom_event_details)
132 throw new NotImplementedException ();
136 #endif