HttpSessionState.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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. using System.Collections;
  30. using System.Collections.Specialized;
  31. using System.Security.Permissions;
  32. using System.Web;
  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 HttpCookieMode CookieMode {
  54. get {
  55. if (IsCookieless)
  56. return HttpCookieMode.UseUri;
  57. else
  58. return HttpCookieMode.UseCookies;
  59. }
  60. }
  61. public int Count {
  62. get { return container.Count; }
  63. }
  64. public bool IsCookieless {
  65. get { return container.IsCookieless; }
  66. }
  67. public bool IsNewSession {
  68. get { return container.IsNewSession; }
  69. }
  70. public bool IsReadOnly {
  71. get { return container.IsReadOnly; }
  72. }
  73. public bool IsSynchronized {
  74. get { return container.IsSynchronized; }
  75. }
  76. public object this [string key] {
  77. get { return container [key]; }
  78. set { container [key] = value; }
  79. }
  80. public object this [int index] {
  81. get { return container [index]; }
  82. set { container [index] = value; }
  83. }
  84. public NameObjectCollectionBase.KeysCollection Keys {
  85. get { return container.Keys; }
  86. }
  87. public int LCID {
  88. get { return container.LCID; }
  89. set { container.LCID = value; }
  90. }
  91. public SessionStateMode Mode {
  92. get { return container.Mode; }
  93. }
  94. public string SessionID {
  95. get { return container.SessionID; }
  96. }
  97. public HttpStaticObjectsCollection StaticObjects {
  98. get { return container.StaticObjects; }
  99. }
  100. public object SyncRoot {
  101. get { return container.SyncRoot; }
  102. }
  103. public int Timeout {
  104. get { return container.Timeout; }
  105. set { container.Timeout = value; }
  106. }
  107. public void Abandon ()
  108. {
  109. container.Abandon ();
  110. }
  111. public void Add (string name, object value)
  112. {
  113. container.Add (name, value);
  114. }
  115. public void Clear ()
  116. {
  117. container.Clear ();
  118. }
  119. public void CopyTo (Array array, int index)
  120. {
  121. container.CopyTo (array, index);
  122. }
  123. public IEnumerator GetEnumerator ()
  124. {
  125. return container.GetEnumerator ();
  126. }
  127. public void Remove (string name)
  128. {
  129. container.Remove (name);
  130. }
  131. public void RemoveAll ()
  132. {
  133. container.Clear ();
  134. }
  135. public void RemoveAt (int index)
  136. {
  137. container.RemoveAt (index);
  138. }
  139. }
  140. }