2008-12-08 Atsushi Enomoto <atsushi@ximian.com>
[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 #if NET_2_0
30 using System.Collections;
31 using System.Collections.Specialized;
32 using System.Security.Permissions;
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 int Count {
61                 get { return container.Count; }
62         }
63
64         public bool IsCookieless {
65                 get { return container.IsCookieless; }
66         }
67
68         public bool IsNewSession {
69                 get { return container.IsNewSession; }
70         }
71
72         public bool IsReadOnly {
73                 get { return container.IsReadOnly; }
74         }
75
76         public bool IsSynchronized {
77                 get { return container.IsSynchronized; }
78         }
79
80         public object this [string key] {
81                 get { return container [key]; }
82                 set { container [key] = value; }
83         }
84
85         public object this [int index] {
86                 get { return container [index]; }
87                 set { container [index] = value; }
88         }
89
90         public NameObjectCollectionBase.KeysCollection Keys {
91                 get { return container.Keys; }
92         }
93
94         public int LCID {
95                 get { return container.LCID; }
96                 set { container.LCID = value; }
97         }
98
99         public SessionStateMode Mode {
100                 get { return container.Mode; }
101         }
102
103         public string SessionID {
104                 get { return container.SessionID; }
105         }
106
107         public HttpStaticObjectsCollection StaticObjects {
108                 get { return container.StaticObjects; }
109         }
110
111         public object SyncRoot {
112                 get { return container.SyncRoot; }
113         }
114
115         public int Timeout {
116                 get { return container.Timeout; }
117                 set { container.Timeout = value; }
118         }
119
120         public void Abandon ()
121         {
122                 container.Abandon ();
123         }
124
125         public void Add (string name, object value)
126         {
127                 container.Add (name, value);
128         }
129
130         public void Clear ()
131         {
132                 container.Clear ();
133         }
134         
135         public void CopyTo (Array array, int index)
136         {
137                 container.CopyTo (array, index);
138         }
139
140         public IEnumerator GetEnumerator ()
141         {
142                 return container.GetEnumerator ();
143         }
144         
145         public void Remove (string name)
146         {
147                 container.Remove (name);
148         }
149
150         public void RemoveAll ()
151         {
152                 container.Clear ();
153         }
154
155         public void RemoveAt (int index)
156         {
157                 container.RemoveAt (index);
158         }
159 }
160 }
161 #endif