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

Contains() public method

Determines whether the object contains an element with the specified key.
key is null.
public Contains ( object key ) : bool
key object The key to locate in the object.
return bool
		public bool Contains( object key )
		{
			return _session[ (String)key ] != null;
		}