2009-06-12 Bill Holmes <billholmes54@gmail.com>
[mono.git] / mcs / class / System.Web.Abstractions / System.Web / HttpApplicationStateBase.cs
1 //
2 // HttpApplicationStateBase.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2008 Novell Inc. http://novell.com
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 using System;
31 using System.Collections;
32 using System.Collections.Generic;
33 using System.Collections.Specialized;
34 using System.Globalization;
35 using System.Security.Permissions;
36 using System.Security.Principal;
37 using System.Web.Caching;
38
39 namespace System.Web
40 {
41         [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
42         [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
43         public abstract class HttpApplicationStateBase : NameObjectCollectionBase, ICollection, IEnumerable
44         {
45                 void NotImplemented ()
46                 {
47                         throw new NotImplementedException ();
48                 }
49
50                 public virtual string [] AllKeys {
51                         get { NotImplemented (); return null; }
52                 }
53
54                 public virtual HttpApplicationStateBase Contents {
55                         get { NotImplemented (); return null; }
56                 }
57
58                 public override int Count {
59                         get { NotImplemented (); return 0; }
60                 }
61
62                 public virtual bool IsSynchronized {
63                         get { NotImplemented (); return false; }
64                 }
65
66                 public virtual object this [int index] {
67                         get { return Get (index); }
68                 }
69
70                 public virtual object this [string name] {
71                         get { return Get (name); }
72                         set { Set (name, value); }
73                 }
74
75                 public virtual HttpStaticObjectsCollectionBase StaticObjects {
76                         get { NotImplemented (); return null; }
77                 }
78
79                 public virtual object SyncRoot {
80                         get { NotImplemented (); return null; }
81                 }
82
83                 public virtual void Add (string name, object value)
84                 {
85                         NotImplemented ();
86                 }
87
88                 public virtual void Clear ()
89                 {
90                         NotImplemented ();
91                 }
92
93                 public virtual void CopyTo (Array array, int index)
94                 {
95                         NotImplemented ();
96                 }
97
98                 public virtual object Get (int index)
99                 {
100                         NotImplemented ();
101                         return null;
102                 }
103
104                 public virtual object Get (string name)
105                 {
106                         NotImplemented ();
107                         return null;
108                 }
109
110                 public override IEnumerator GetEnumerator ()
111                 {
112                         NotImplemented ();
113                         return null;
114                 }
115
116                 public virtual string GetKey (int index)
117                 {
118                         NotImplemented ();
119                         return null;
120                 }
121
122                 public virtual void Lock ()
123                 {
124                         NotImplemented ();
125                 }
126
127                 public virtual void Remove (string name)
128                 {
129                         NotImplemented ();
130                 }
131
132                 public virtual void RemoveAll ()
133                 {
134                         NotImplemented ();
135                 }
136
137                 public virtual void RemoveAt (int index)
138                 {
139                         NotImplemented ();
140                 }
141
142                 public virtual void Set (string name, object value)
143                 {
144                         NotImplemented ();
145                 }
146
147                 public virtual void UnLock ()
148                 {
149                         NotImplemented ();
150                 }
151         }
152 }