Apache.Shiro.Cache.ImmutableProxiedCache.ImmutableProxiedCache C# (CSharp) 메소드

ImmutableProxiedCache() 공개 메소드

public ImmutableProxiedCache ( ICache target ) : System
target ICache
리턴 System
        public ImmutableProxiedCache(ICache target)
        {
            if (target == null)
            {
                throw new ArgumentNullException("target");
            }
            _delegate = target;
        }