Calyptus.Mvc.HttpSessionStateWrapper.this C# (CSharp) Method

this() public method

public this ( int index ) : object
index int
return object
		public object this[int index]
		{
			get
			{
				return this._session[index];
			}
			set
			{
				this._session[index] = value;
			}
		}

Same methods

HttpSessionStateWrapper::this ( string name ) : object