Exemplo n.º 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);
        }
Exemplo n.º 2
0
 protected CacheDictionaryBase(string name, ICacheGroup group)
 {
     Name         = name;
     CurrentGroup = group;
 }
Exemplo n.º 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))
		{
		}
Exemplo n.º 5
0
		public void Update(ICacheGroup newVersionOfCacheGroup)
		{
			throw new NotImplementedException();
		}
Exemplo n.º 6
0
 public void Update(ICacheGroup newVersionOfCacheGroup)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 7
0
		protected CacheDictionaryBase(string name, ICacheGroup group)
		{
			Name = name;
			CurrentGroup = group;
		}
Exemplo n.º 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;
		}