Example #1
0
 public TcpConfig(string name, int port, GatewayDestination destination)
 {
     this.Name        = name;
     this.Port        = port;
     this.Destination = destination;
 }
Example #2
0
 public HttpRouteConfig(HttpRouteMatchRule match, GatewayDestination destination, string name = default(string))
 {
     this.Name        = name;
     this.Match       = match;
     this.Destination = destination;
 }