internal BaseUrl CompleteWithDefaults( BaseUrl defaults )
 {
     return new BaseUrl( host.Any() ? host : defaults.host, nonsecurePort ?? defaults.nonsecurePort, securePort ?? defaults.securePort, path ?? defaults.path );
 }
Example #2
0
 internal BaseUrl CompleteWithDefaults(BaseUrl defaults)
 {
     return(new BaseUrl(host.Any() ? host : defaults.host, nonsecurePort ?? defaults.nonsecurePort, securePort ?? defaults.securePort, path ?? defaults.path));
 }