Castle.MonoRail.Framework.Services.DefaultCacheProvider.Get C# (CSharp) Method

Get() public method

Gets the cache item by the specified key.
public Get ( String key ) : object
key String The key.
return object
		public object Get(String key)
		{
			if (logger.IsDebugEnabled)
			{
				logger.DebugFormat("Getting entry with key {0}", key);
			}

			return GetCurrentContext().Cache.Get(key);
		}