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