コード例 #1
0
ファイル: NCacheWrapper.cs プロジェクト: shekky/NCache
        public bool GetByTags(Tag tag, out Hashtable value)
        {
            Logger.Log(
                "Trying to get item against tag '" + tag + "'",
                Microsoft.Extensions.Logging.LogLevel.Trace
                );
            Hashtable resultSet = _nCache.GetByTag(tag);

            value = resultSet;
            return(resultSet.Count > 0);
        }