Castle.MonoRail.Framework.Adapters.SessionAdapter.this C# (CSharp) Method

this() public method

Gets or sets the System.Object with the specified key.
public this ( object key ) : object
key object
return object
		public object this[ object key ]
		{
			get { return _session[ (String)key ]; }
			set
			{
				_session[ (String)key ] = value;
			}
		}
	}