Aspectacular.Test.StupidSimpleInProcCache.TryGet C# (CSharp) Method

TryGet() public method

public TryGet ( string key, object &val ) : bool
key string
val object
return bool
        public bool TryGet(string key, out object val)
        {
            return this.cache.TryGetValue(key, out val);
        }
StupidSimpleInProcCache