[SRE] Improved token fixups processing.
[mono.git] / mcs / class / System.Web.Abstractions / System.Web / HttpSessionStateBase.cs
1 //
2 // HttpSessionStateBase.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.IO;
36 using System.Runtime.CompilerServices;
37 using System.Security.Permissions;
38 using System.Security.Principal;
39 using System.Web.Caching;
40 using System.Web.SessionState;
41
42 namespace System.Web
43 {
44         [TypeForwardedFrom ("System.Web.Abstractions, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
45         [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
46         [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
47         public abstract class HttpSessionStateBase : ICollection, IEnumerable
48         {
49                 void NotImplemented ()
50                 {
51                         throw new NotImplementedException ();
52                 }
53
54                 public virtual int CodePage { get { NotImplemented (); return 0; } set { NotImplemented (); } }
55
56                 public virtual HttpSessionStateBase Contents { get { NotImplemented (); return null; } }
57
58                 public virtual HttpCookieMode CookieMode { get { NotImplemented (); return default (HttpCookieMode); } }
59
60                 public virtual int Count { get { NotImplemented (); return 0; } }
61
62                 public virtual bool IsCookieless { get { NotImplemented (); return false; } }
63
64                 public virtual bool IsNewSession { get { NotImplemented (); return false; } }
65
66                 public virtual bool IsReadOnly { get { NotImplemented (); return false; } }
67
68                 public virtual bool IsSynchronized { get { NotImplemented (); return false; } }
69
70                 public virtual object this [int index] {
71                         get { NotImplemented (); return null; }
72                         set { NotImplemented (); }
73                 }
74
75                 public virtual object this [string name] {
76                         get { NotImplemented (); return null; }
77                         set { NotImplemented (); }
78                 }
79
80                 public virtual NameObjectCollectionBase.KeysCollection Keys { get { NotImplemented (); return null; } }
81
82                 public virtual int LCID { get { NotImplemented (); return 0; } set { NotImplemented (); } }
83
84                 public virtual SessionStateMode Mode { get { NotImplemented (); return default (SessionStateMode); } }
85
86                 public virtual string SessionID { get { NotImplemented (); return null; } }
87
88                 public virtual HttpStaticObjectsCollectionBase StaticObjects { get { NotImplemented (); return null; } }
89
90                 public virtual object SyncRoot { get { NotImplemented (); return null; } }
91
92                 public virtual int Timeout { get { NotImplemented (); return 0; } set { NotImplemented (); } }
93
94
95                 public virtual void Abandon ()
96                 {
97                         NotImplemented ();
98                 }
99
100                 public virtual void Add (string name, object value)
101                 {
102                         NotImplemented ();
103                 }
104
105                 public virtual void Clear ()
106                 {
107                         NotImplemented ();
108                 }
109
110                 public virtual void CopyTo (Array array, int index)
111                 {
112                         NotImplemented ();
113                 }
114
115                 public virtual IEnumerator GetEnumerator ()
116                 {
117                         NotImplemented ();
118                         return null;
119                 }
120
121                 public virtual void Remove (string name)
122                 {
123                         NotImplemented ();
124                 }
125
126                 public virtual void RemoveAll ()
127                 {
128                         NotImplemented ();
129                 }
130
131                 public virtual void RemoveAt (int index)
132                 {
133                         NotImplemented ();
134                 }
135         }
136 }