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