示例#1
0
        public override void Dispose()
        {
            OnCacheMiss -= new CacheMissEvent(OnCacheMissHandler);

            m_oCacheCreator = null;

            base.Dispose();
        }
示例#2
0
 public ServiceCache(string wsdlLocation, WsdlCache type, CacheMissEvent cacheMiss)
 {
     this.type = type;
     this.wsdlLocation = wsdlLocation;
     this.cacheMiss = cacheMiss;
 }
示例#3
0
 public BaseCache()
 {
     OnCacheMiss += new CacheMissEvent(OnCacheMissHandler);
 }
示例#4
0
 public ServiceCache(string wsdlLocation, WsdlCache type, CacheMissEvent cacheMiss)
 {
     this.type         = type;
     this.wsdlLocation = wsdlLocation;
     this.cacheMiss    = cacheMiss;
 }