Castle.MonoRail.Framework.Adapters.SessionAdapter.Contains C# (CSharp) 메소드

Contains() 공개 메소드

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.
리턴 bool
		public bool Contains( object key )
		{
			return _session[ (String)key ] != null;
		}