Apache.Shiro.Cache.ImmutableProxiedCache.TryGetValue C# (CSharp) Method

TryGetValue() public method

public TryGetValue ( object key, object &value ) : bool
key object
value object
return bool
        public bool TryGetValue(object key, out object value)
        {
            return _delegate.TryGetValue(key, out value);
        }