Example #1
0
 public Subtree(Fetch fetch, QuickFetch quickFetch, Globals globals, RemoteOptions remoteOptions)
 {
     _fetch = fetch;
     _quickFetch = quickFetch;
     _globals = globals;
     _remoteOptions = remoteOptions;
 }
Example #2
0
 public Subtree(Fetch fetch, QuickFetch quickFetch, Globals globals, RemoteOptions remoteOptions)
 {
     _fetch         = fetch;
     _quickFetch    = quickFetch;
     _globals       = globals;
     _remoteOptions = remoteOptions;
 }
Example #3
0
 public Subtree(TextWriter stdout, Fetch fetch, QuickFetch quickFetch, Globals globals, RemoteOptions remoteOptions)
 {
     this._stdout = stdout;
     this._fetch = fetch;
     this._quickFetch = quickFetch;
     this._globals = globals;
     this._remoteOptions = remoteOptions;
 }
Example #4
0
 public Subtree(TextWriter stdout, Fetch fetch, QuickFetch quickFetch, Globals globals, RemoteOptions remoteOptions)
 {
     this._stdout        = stdout;
     this._fetch         = fetch;
     this._quickFetch    = quickFetch;
     this._globals       = globals;
     this._remoteOptions = remoteOptions;
 }
Example #5
0
 public QuickClone(Globals globals, Init init, QuickFetch fetch)
     : base(globals, fetch, init)
 {
 }
Example #6
0
 public QuickClone(Globals globals, Init init, QuickFetch fetch) : base(globals, fetch, init)
 {
 }
Example #7
0
 public QuickClone(Globals globals, Init init, QuickFetch fetch, TextWriter stdout)
     : base(globals, fetch, init, null, stdout)
 {
 }