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