2 writes to baseAddress
System.ServiceModel (2)
System\ServiceModel\Channels\BaseUriWithWildcard.cs (2)
35
this.
baseAddress
= baseAddress;
77
this.
baseAddress
= new UriBuilder(protocol, host, port, path).Uri;
10 references to baseAddress
System.ServiceModel (10)
System\ServiceModel\Channels\BaseUriWithWildcard.cs (10)
96
get { return this.
baseAddress
; }
240
if ((object)
baseAddress
.Scheme != (object)fullAddress.Scheme)
245
if (
baseAddress
.Port != fullAddress.Port)
252
if (string.Compare(
baseAddress
.Host, fullAddress.Host, StringComparison.OrdinalIgnoreCase) != 0)
257
string s1 =
baseAddress
.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, UriFormat.Unescaped);
278
UriSchemeKeyedCollection.ValidateBaseAddress(
baseAddress
, "context");
311
this.comparand.Address = this.
baseAddress
.ToString();
316
this.comparand.Address = this.
baseAddress
.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, UriFormat.UriEscaped);
319
this.comparand.Port = this.
baseAddress
.Port;
320
this.comparand.Scheme = this.
baseAddress
.Scheme;