Deveel.Data.RequestAccess.GetCachedTable C# (CSharp) 메소드

GetCachedTable() 공개 메소드

public GetCachedTable ( string cacheKey ) : ITable
cacheKey string
리턴 ITable
        public override ITable GetCachedTable(string cacheKey)
        {
            var tableCache = TableCache;
            if (tableCache == null)
                return null;

            object obj;
            if (!tableCache.TryGet(cacheKey, out obj))
                return null;

            return obj as ITable;
        }