Merge pull request #1508 from slluis/fix-20966
[mono.git] / mcs / class / System.Web / System.Web.SessionState_2.0 / HttpSessionState.cs
1 //
2 // System.Web.SessionState.HttpSessionState
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2002,2003 Ximian, Inc (http://www.ximian.com)
8 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29 using System.Collections;
30 using System.Collections.Specialized;
31 using System.Security.Permissions;
32 using System.Web;
33
34 namespace System.Web.SessionState {
35
36 // CAS - no InheritanceDemand here as the class is sealed
37 [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
38 public sealed class HttpSessionState : ICollection, IEnumerable
39 {
40         IHttpSessionState container;
41         
42         internal HttpSessionState (IHttpSessionState container)
43         {
44                 this.container = container;
45         }
46
47         internal IHttpSessionState Container {
48                 get { return container; }
49         }
50         
51         public int CodePage {
52                 get { return container.CodePage; }
53                 set { container.CodePage = value; }
54         }
55
56         public HttpSessionState Contents {
57                 get { return this; }
58         }
59
60         public HttpCookieMode CookieMode {
61                 get {
62                         if (IsCookieless)
63                                 return HttpCookieMode.UseUri;
64                         else
65                                 return HttpCookieMode.UseCookies;
66                 }
67         }
68
69         public int Count {
70                 get { return container.Count; }
71         }
72
73         public bool IsCookieless {
74                 get { return container.IsCookieless; }
75         }
76
77         public bool IsNewSession {
78                 get { return container.IsNewSession; }
79         }
80
81         public bool IsReadOnly {
82                 get { return container.IsReadOnly; }
83         }
84
85         public bool IsSynchronized {
86                 get { return container.IsSynchronized; }
87         }
88
89         public object this [string key] {
90                 get { return container [key]; }
91                 set { container [key] = value; }
92         }
93
94         public object this [int index] {
95                 get { return container [index]; }
96                 set { container [index] = value; }
97         }
98
99         public NameObjectCollectionBase.KeysCollection Keys {
100                 get { return container.Keys; }
101         }
102
103         public int LCID {
104                 get { return container.LCID; }
105                 set { container.LCID = value; }
106         }
107
108         public SessionStateMode Mode {
109                 get { return container.Mode; }
110         }
111
112         public string SessionID {
113                 get { return container.SessionID; }
114         }
115
116         public HttpStaticObjectsCollection StaticObjects {
117                 get { return container.StaticObjects; }
118         }
119
120         public object SyncRoot {
121                 get { return container.SyncRoot; }
122         }
123
124         public int Timeout {
125                 get { return container.Timeout; }
126                 set { container.Timeout = value; }
127         }
128
129         public void Abandon ()
130         {
131                 container.Abandon ();
132         }
133
134         public void Add (string name, object value)
135         {
136                 container.Add (name, value);
137         }
138
139         public void Clear ()
140         {
141                 container.Clear ();
142         }
143         
144         public void CopyTo (Array array, int index)
145         {
146                 container.CopyTo (array, index);
147         }
148
149         public IEnumerator GetEnumerator ()
150         {
151                 return container.GetEnumerator ();
152         }
153         
154         public void Remove (string name)
155         {
156                 container.Remove (name);
157         }
158
159         public void RemoveAll ()
160         {
161                 container.Clear ();
162         }
163
164         public void RemoveAt (int index)
165         {
166                 container.RemoveAt (index);
167         }
168 }
169 }