public SetAddressListMatcher(List <string> targetHostAddresses,
                              bool bClear = false,
                              ContextRoutingType routingType = ContextRoutingType.Single)
 {
     RoutingType           = routingType;
     TargetHostAddressList = targetHostAddresses;
     Clear = bClear;
 }
 public SetAddressListMatcher(string[] HostAddress, bool bClear = false,
                              ContextRoutingType routingType    = ContextRoutingType.Single)
     : this(new List <string>(HostAddress), bClear, routingType)
 {
 }