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