HttpSessionState.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. //
  2. // System.Web.SessionState.HttpSessionState
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  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. using System.Web;
  34. namespace System.Web.SessionState {
  35. // CAS - no InheritanceDemand here as the class is sealed
  36. [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
  37. public sealed class HttpSessionState : ICollection, IEnumerable
  38. {
  39. IHttpSessionState container;
  40. internal HttpSessionState (IHttpSessionState container)
  41. {
  42. this.container = container;
  43. }
  44. internal IHttpSessionState Container {
  45. get { return container; }
  46. }
  47. public int CodePage {
  48. get { return container.CodePage; }
  49. set { container.CodePage = value; }
  50. }
  51. public HttpSessionState Contents {
  52. get { return this; }
  53. }
  54. public HttpCookieMode CookieMode {
  55. get {
  56. if (IsCookieless)
  57. return HttpCookieMode.UseUri;
  58. else
  59. return HttpCookieMode.UseCookies;
  60. }
  61. }
  62. public int Count {
  63. get { return container.Count; }
  64. }
  65. public bool IsCookieless {
  66. get { return container.IsCookieless; }
  67. }
  68. public bool IsNewSession {
  69. get { return container.IsNewSession; }
  70. }
  71. public bool IsReadOnly {
  72. get { return container.IsReadOnly; }
  73. }
  74. public bool IsSynchronized {
  75. get { return container.IsSynchronized; }
  76. }
  77. public object this [string key] {
  78. get { return container [key]; }
  79. set { container [key] = value; }
  80. }
  81. public object this [int index] {
  82. get { return container [index]; }
  83. set { container [index] = value; }
  84. }
  85. public NameObjectCollectionBase.KeysCollection Keys {
  86. get { return container.Keys; }
  87. }
  88. public int LCID {
  89. get { return container.LCID; }
  90. set { container.LCID = value; }
  91. }
  92. public SessionStateMode Mode {
  93. get { return container.Mode; }
  94. }
  95. public string SessionID {
  96. get { return container.SessionID; }
  97. }
  98. public HttpStaticObjectsCollection StaticObjects {
  99. get { return container.StaticObjects; }
  100. }
  101. public object SyncRoot {
  102. get { return container.SyncRoot; }
  103. }
  104. public int Timeout {
  105. get { return container.Timeout; }
  106. set { container.Timeout = value; }
  107. }
  108. public void Abandon ()
  109. {
  110. container.Abandon ();
  111. }
  112. public void Add (string name, object value)
  113. {
  114. container.Add (name, value);
  115. }
  116. public void Clear ()
  117. {
  118. container.Clear ();
  119. }
  120. public void CopyTo (Array array, int index)
  121. {
  122. container.CopyTo (array, index);
  123. }
  124. public IEnumerator GetEnumerator ()
  125. {
  126. return container.GetEnumerator ();
  127. }
  128. public void Remove (string name)
  129. {
  130. container.Remove (name);
  131. }
  132. public void RemoveAll ()
  133. {
  134. container.Clear ();
  135. }
  136. public void RemoveAt (int index)
  137. {
  138. container.RemoveAt (index);
  139. }
  140. }
  141. }
  142. #endif