Пример #1
0
        protected override IList <ICacheGroup> ParserLocalGroups(XmlNodeList nodes)
        {
            if (ValidateService.IsNullOrEmpty(nodes))
            {
            }
            IList <ICacheGroup> groups = new List <ICacheGroup>();

            foreach (XmlNode node in nodes)
            {
                ICacheGroup group = ParserLocalGroup(node);
                if (null == group)
                {
                    continue;
                }
                groups.Add(group);
            }
            return(groups);
        }
Пример #2
0
 protected CacheDictionaryBase(string name, ICacheGroup group)
 {
     Name         = name;
     CurrentGroup = group;
 }
Пример #3
0
 protected LocalMemoryCacheDictionary(string name, ICacheGroup group) : base(name, group, new MemoryCache(name))
 {
 }
		protected LocalMemoryCacheDictionary(string name, ICacheGroup group) : base(name, group, new MemoryCache(name))
		{
		}
Пример #5
0
		public void Update(ICacheGroup newVersionOfCacheGroup)
		{
			throw new NotImplementedException();
		}
Пример #6
0
 public void Update(ICacheGroup newVersionOfCacheGroup)
 {
     throw new NotImplementedException();
 }
Пример #7
0
		protected CacheDictionaryBase(string name, ICacheGroup group)
		{
			Name = name;
			CurrentGroup = group;
		}
Пример #8
0
 protected ObjectCacheBasedCacheDictionaryBase(string name, ICacheGroup group, ObjectCache cacheCore) : base(name, group)
 {
     _core = cacheCore;
 }
		protected ObjectCacheBasedCacheDictionaryBase(string name, ICacheGroup group, ObjectCache cacheCore) : base(name, group)
		{

			_core = cacheCore;
		}