Esempio n. 1
0
        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);
        }