Exemple #1
0
 public RequestProxry(IExtendApp app)
 {
     this._app     = app;
     this._handler = new RequestHandle(app);
 }
Exemple #2
0
 public RequestProxry(IPluginApp app, IPlugin plugin)
 {
     this._app       = app;
     this._handler   = new RequestHandle(plugin);
     this._mgHandler = new ManageHandle(app, plugin);
 }
Exemple #3
0
 public RequestProxry(IExtendApp app)
 {
     this._app = app;
     this._handler = new RequestHandle(app);
 }