9 references to GetVia
System.ServiceModel (9)
System\ServiceModel\Description\DispatcherBuilder.cs (1)
545listenUri = serviceHost.GetVia(endpoint.Binding.Scheme, ServiceHost.EmptyUri);
System\ServiceModel\Description\ServiceDebugBehavior.cs (3)
184mex.HttpHelpPageUrl = host.GetVia(Uri.UriSchemeHttp, this.httpHelpPageUrl == null ? new Uri(string.Empty, UriKind.Relative) : this.httpHelpPageUrl); 188mex.HttpsHelpPageUrl = host.GetVia(Uri.UriSchemeHttps, this.httpsHelpPageUrl == null ? new Uri(string.Empty, UriKind.Relative) : this.httpsHelpPageUrl); 194Uri address = host.GetVia(scheme, url == null ? new Uri(string.Empty, UriKind.Relative) : url);
System\ServiceModel\Description\ServiceMetadataBehavior.cs (3)
235Uri address = host.GetVia(scheme, url == null ? new Uri(string.Empty, UriKind.Relative) : url); 254mex.HttpGetUrl = host.GetVia(Uri.UriSchemeHttp, this.httpGetUrl == null ? new Uri(string.Empty, UriKind.Relative) : this.httpGetUrl); 255mex.HttpsGetUrl = host.GetVia(Uri.UriSchemeHttps, this.httpsGetUrl == null ? new Uri(string.Empty, UriKind.Relative) : this.httpsGetUrl);
System\ServiceModel\Description\ServiceMetadataExtension.cs (2)
561Uri httpAddr = parent.owner.GetVia(Uri.UriSchemeHttp, location); 562Uri httpsAddr = parent.owner.GetVia(Uri.UriSchemeHttps, location);