System\ServiceModel\Description\ServiceDebugBehavior.cs (6)
67if (value != null && value.IsAbsoluteUri && value.Scheme != Uri.UriSchemeHttps)
70"HttpsHelpPageUrl", Uri.UriSchemeHttps, value.ToString(), value.Scheme));
112if (!value.Scheme.Equals(Uri.UriSchemeHttps, StringComparison.OrdinalIgnoreCase))
115value.Scheme, value.GetType().ToString(), Uri.UriSchemeHttps));
188mex.HttpsHelpPageUrl = host.GetVia(Uri.UriSchemeHttps, this.httpsHelpPageUrl == null ? new Uri(string.Empty, UriKind.Relative) : this.httpsHelpPageUrl);
219if (!EnsureHelpPageDispatcher(host, mex, this.httpsHelpPageUrl, Uri.UriSchemeHttps))
System\ServiceModel\Description\ServiceMetadataBehavior.cs (8)
71if (value != null && value.IsAbsoluteUri && value.Scheme != Uri.UriSchemeHttps)
74"HttpsGetUrl", Uri.UriSchemeHttps, value.ToString(), value.Scheme));
117if (!value.Scheme.Equals(Uri.UriSchemeHttps, StringComparison.OrdinalIgnoreCase))
120value.Scheme, value.GetType().ToString(), Uri.UriSchemeHttps));
146if (value != null && value.IsAbsoluteUri && !(value.Scheme == Uri.UriSchemeHttp || value.Scheme == Uri.UriSchemeHttps))
216httpsDispatcherEnabled = EnsureGetDispatcher(host, mex, this.httpsGetUrl, Uri.UriSchemeHttps);
255mex.HttpsGetUrl = host.GetVia(Uri.UriSchemeHttps, this.httpsGetUrl == null ? new Uri(string.Empty, UriKind.Relative) : this.httpsGetUrl);
309bool isListeningOnHttps = channelDispatcher.Listener.Uri.Scheme == Uri.UriSchemeHttps;