HttpSessionState.cs 3.7 KB

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