// // System.Web.SessionState.HttpSessionState // // Authors: // Gonzalo Paniagua Javier (gonzalo@ximian.com) // // (C) 2002 Ximian, Inc (http://www.ximian.com) // using System; using System.Collections; using System.Collections.Specialized; using System.Globalization; using System.Threading; namespace System.Web.SessionState { public sealed class HttpSessionState : ICollection, IEnumerable { private NameValueCollection _state; //FIXME: it should be a ManagementNamedValueCollection private string _id; private SessionDictionary _dict; private HttpStaticObjectsCollection _staticObjects; private int _timeout; private bool _newSession; private bool _isCookieless; private SessionStateMode _mode; private bool _isReadonly; private bool _abandoned; internal HttpSessionState (string id, SessionDictionary dict, HttpStaticObjectsCollection staticObjects, int timeout, bool newSession, bool isCookieless, SessionStateMode mode, bool isReadonly) { _id = id; _dict = dict; _staticObjects = staticObjects; _timeout = timeout; _newSession = newSession; _isCookieless = isCookieless; _mode = mode; _isReadonly = isReadonly; } // Compatibility with ASP public int CodePage { get { return 0; } set { } } public HttpSessionState Contents { get { return this; } } public int Count { get { return _state.Count; } } internal bool IsAbandoned { get { return _abandoned; } } public bool IsCookieless { get { return _isCookieless; } } public bool IsNewSession { get { return _newSession; } } public bool IsReadOnly { get { return _isReadonly; } } public bool IsSynchronized { get { return false; } } public object this [string key] { get { return _state [key]; } set { _state [key] = (string) value; } } public object this [int index] { get { return _state [index]; } set { string key = _state.Keys [index]; _state [key] = (string) value; } } public NameObjectCollectionBase.KeysCollection Keys { get { return _state.Keys; } } public int LCID { get { return Thread.CurrentThread.CurrentCulture.LCID; } set { Thread.CurrentThread.CurrentCulture = new CultureInfo(value); } } public SessionStateMode Mode { get { return _mode; } } public string SessionID { get { return _id; } } public HttpStaticObjectsCollection StaticObjects { get { return _staticObjects; } } public object SyncRoot { get { return this; } } public int Timeout { get { return _timeout; } set { _timeout = value; } } public void Abandon () { _abandoned = true; } public void Add (string name, object value) { if (_state == null) _state = new NameValueCollection (); _state.Add (name, (string) value); } public void Clear () { if (_state != null) _state.Clear (); } public void CopyTo (Array array, int index) { if (_state == null) _state = new NameValueCollection (); _state.CopyTo (array, index); } public IEnumerator GetEnumerator () { if (_state == null) _state = new NameValueCollection (); return _state.GetEnumerator (); } public void Remove (string name) { if (_state != null) _state.Remove (name); } public void RemoveAll () { if (_state != null) foreach (string key in _state.AllKeys) _state.Remove (key); } [MonoTODO("Implement ManagementNameValueCollection")] public void RemoveAt (int index) { throw new NotImplementedException (); //if (_state != null) // _state.RemoveAt (index); } } }