Esempio n. 1
0
 public StreamPlugin(IProxyEvents proxyEvents) : base(proxyEvents)
 {
     proxyEvents.onCompleted += ProxyEvents_onCompleted;
 }
Esempio n. 2
0
 public HeaderRewritePlugin(IProxyEvents proxyEvents) : base(proxyEvents)
 {
     proxyEvents.onBeforeRequest += ProxyEventsOnBeforeRequest;
     proxyEvents.onCompleted     += ProxyEvents_onCompleted;
 }
Esempio n. 3
0
 protected AbstractPlugin(IProxyEvents proxyEvents)
 {
 }
Esempio n. 4
0
 public ProxifyPlugin(IProxyEvents proxyEvents) : base(proxyEvents)
 {
     _proxyEvents = proxyEvents;
     proxyEvents.onBeforeRequest += ProxyEvents_onBeforeRequest;
     proxyEvents.onCompleted     += ProxyEvents_onCompleted;
 }