Пример #1
0
 public virtual void Dispose()
 {
     lock (stateLock)
     {
         this.pool  = null;
         this.State = ProxletState.Disposed;
     }
 }
Пример #2
0
 public HttpProxlet(ProxletsPool pool, SuProxyConfiguration config)
     : base(pool)
 {
     lock (initiLock)
     {
         if (httpPipesChainsFactory == null && config.ConfigurationFiles != null)
         {
             httpPipesChainsFactory = new HttpPipesChainsFactory(config);
         }
     }
 }
Пример #3
0
 public Proxlet(ProxletsPool pool)
 {
     this.pool = pool;
 }