Example #1
0
 public HttpRouteConfig(HttpRouteMatchRule match, GatewayDestination destination, string name = default(string))
 {
     Name        = name;
     Match       = match;
     Destination = destination;
 }
Example #2
0
 public HttpRouteConfig()
 {
     Match = new HttpRouteMatchRule();
 }