Ejemplo n.º 1
0
 public Deploy(string path, Config config, RouterConfig routerConfig, Scope scope, string dispatcher)
 {
     Path = path;
     Config = config;
     RouterConfig = routerConfig;
     Scope = scope;
     Dispatcher = dispatcher;
 }
Ejemplo n.º 2
0
 public override Scope WithFallback(Scope other)
 {
     return Instance;
 }
Ejemplo n.º 3
0
 public Deploy(RouterConfig routerConfig, Scope scope)
     : this()
 {
     RouterConfig = routerConfig;
     Scope = scope;
 }
Ejemplo n.º 4
0
 public Deploy(Scope scope)
     : this()
 {
     Scope = scope;
 }
Ejemplo n.º 5
0
 public Deploy(string path, Scope scope)
     : this(scope)
 {
     Path = path;
 }
Ejemplo n.º 6
0
 public Scope WithFallback(Scope other)
 {
     Scope copy = Copy();
     copy._fallback = other;
     return copy;
 }