85 references to UriSchemeHttp
PresentationCore (9)
Core\CSharp\MS\Internal\IO\Packaging\ByteRangeDownloader.cs (1)
463if (String.Compare(requestedUri.Scheme, Uri.UriSchemeHttp, StringComparison.Ordinal) != 0
Core\CSharp\MS\Internal\IO\Packaging\NetStream.cs (1)
114if (fullStreamLength > 0 && ((String.Compare(uri.Scheme, Uri.UriSchemeHttp, StringComparison.Ordinal) == 0) ||
Core\CSharp\MS\Internal\IO\Packaging\PseudoWebRequest.cs (1)
351if (IsScheme(Uri.UriSchemeHttp))
Core\CSharp\System\Windows\Media\Imaging\BitmapDecoder.cs (3)
332((finalUri.Scheme == Uri.UriSchemeHttp) || 1170Debug.Assert((uri.Scheme == Uri.UriSchemeHttp) || (uri.Scheme == Uri.UriSchemeHttps)); 1218else if (uri.Scheme == Uri.UriSchemeHttp) // for http
Core\CSharp\System\Windows\Media\Imaging\BitmapDownload.cs (1)
216if (uri.Scheme == Uri.UriSchemeHttp || uri.Scheme == Uri.UriSchemeHttps)
Core\CSharp\System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (1)
77if (uriToDecode.Scheme == Uri.UriSchemeHttp ||
Shared\MS\Internal\SecurityHelper.cs (1)
574else if (siteOfOrigin.Scheme == Uri.UriSchemeHttp)
PresentationFramework (3)
src\Framework\MS\Internal\AppModel\AppSecurityManager.cs (2)
112bool isKnownScheme = (Object.ReferenceEquals(destinationUri.Scheme, Uri.UriSchemeHttp)) || 215if (uri.Scheme != Uri.UriSchemeHttp && uri.Scheme != Uri.UriSchemeHttps)
src\Framework\System\Windows\Documents\FixedPage.cs (1)
621uri.Scheme == Uri.UriSchemeHttp ||
System (16)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (1)
1498((object)ctx.Uri.Scheme == (object)Uri.UriSchemeHttp ||
net\System\Net\Cache\RequestCacheManager.cs (2)
57if ((object)internedScheme == (object)Uri.UriSchemeHttp || (object)internedScheme == (object)Uri.UriSchemeHttps) 91else if (uriScheme == Uri.UriSchemeHttp || uriScheme == Uri.UriSchemeHttps)
net\System\Net\cookiecontainer.cs (1)
239uriSb.Append(cookie.Secure ? Uri.UriSchemeHttps : Uri.UriSchemeHttp).Append(Uri.SchemeDelimiter);
net\System\Net\DNS.cs (1)
635if (Uri.TryCreate(Uri.UriSchemeHttp + Uri.SchemeDelimiter + host, UriKind.Absolute, out uri))
net\System\Net\HttpWebRequest.cs (6)
701RequestCachePolicy policy = RequestCacheManager.GetBinding(Uri.UriSchemeHttp).Policy; 716RequestCacheBinding binding = RequestCacheManager.GetBinding(Uri.UriSchemeHttp); 717RequestCacheManager.SetBinding(Uri.UriSchemeHttp, new RequestCacheBinding(binding.Cache, binding.Validator, value)); 4942bool isTunnelRequestForHttp = IsTunnelRequest && _OriginUri.Scheme == Uri.UriSchemeHttp; 5760newUriBuilder.Scheme = Uri.UriSchemeHttp; 5771if (newUri.Scheme != Uri.UriSchemeHttp && newUri.Scheme != Uri.UriSchemeHttps)
net\System\Net\Internal.cs (1)
1709m_httpScheme = usingHttps ? Uri.UriSchemeHttps : Uri.UriSchemeHttp;
net\System\Net\ServicePointManager.cs (1)
772if (address.Scheme != Uri.UriSchemeHttp)
net\System\Net\WebRequest.cs (1)
316if ((requestUri.Scheme != Uri.UriSchemeHttp) && (requestUri.Scheme != Uri.UriSchemeHttps)) {
net\System\uribuilder.cs (1)
52uri = Uri.UriSchemeHttp + Uri.SchemeDelimiter + uri;
security\system\security\Authentication\ExtendedProtection\ServiceNameCollection.cs (1)
173if (!Uri.TryCreate(Uri.UriSchemeHttp + Uri.SchemeDelimiter + host, UriKind.Absolute, out constructedUri))
System.ServiceModel (35)
System\ServiceModel\Channels\BaseUriWithWildcard.cs (2)
179if (protocol.Equals(Uri.UriSchemeHttp, StringComparison.OrdinalIgnoreCase)) 183return new BaseUriWithWildcard(Uri.UriSchemeHttp, HttpUriDefaultPort, binding, 3, path, ":80:");
System\ServiceModel\Channels\HttpChannelFactory.cs (1)
275return Uri.UriSchemeHttp;
System\ServiceModel\Channels\HttpChannelListener.cs (2)
285get { return Uri.UriSchemeHttp; } 726string.Equals(listenUri.Scheme, Uri.UriSchemeHttp, StringComparison.OrdinalIgnoreCase))//SPN list not used for HTTPS (CBT is used instead).
System\ServiceModel\Channels\HttpTransportManager.cs (1)
65return Uri.UriSchemeHttp;
System\ServiceModel\Channels\TransportChannelListener.cs (1)
572if ((String.Compare(this.Uri.Scheme, Uri.UriSchemeHttp, StringComparison.OrdinalIgnoreCase) == 0) ||
System\ServiceModel\Channels\WebSocketHelper.cs (2)
87if (Uri.UriSchemeHttp.Equals(httpUri.Scheme, StringComparison.OrdinalIgnoreCase)) 122builder.Scheme = Uri.UriSchemeHttp;
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (1)
423return (serviceUri.Scheme == Uri.UriSchemeHttp) || (serviceUri.Scheme == Uri.UriSchemeHttps);
System\ServiceModel\Configuration\MexHttpBindingCollectionElement.cs (1)
25return MetadataExchangeBindings.GetBindingForScheme(Uri.UriSchemeHttp);
System\ServiceModel\Description\MetadataExchangeClient.cs (2)
212return address.Scheme == Uri.UriSchemeHttp || address.Scheme == Uri.UriSchemeHttps; 761if (location.Scheme != Uri.UriSchemeHttp && location.Scheme != Uri.UriSchemeHttps)
System\ServiceModel\Description\ServiceDebugBehavior.cs (6)
44if (value != null && value.IsAbsoluteUri && value.Scheme != Uri.UriSchemeHttp) 47"HttpHelpPageUrl", Uri.UriSchemeHttp, value.ToString(), value.Scheme)); 83if (!value.Scheme.Equals(Uri.UriSchemeHttp, StringComparison.OrdinalIgnoreCase)) 86value.Scheme, value.GetType().ToString(), Uri.UriSchemeHttp)); 184mex.HttpHelpPageUrl = host.GetVia(Uri.UriSchemeHttp, this.httpHelpPageUrl == null ? new Uri(string.Empty, UriKind.Relative) : this.httpHelpPageUrl); 211if (!EnsureHelpPageDispatcher(host, mex, this.httpHelpPageUrl, Uri.UriSchemeHttp))
System\ServiceModel\Description\ServiceMetadataBehavior.cs (7)
50if (value != null && value.IsAbsoluteUri && value.Scheme != Uri.UriSchemeHttp) 53"HttpGetUrl", Uri.UriSchemeHttp, value.ToString(), value.Scheme)); 88if (!value.Scheme.Equals(Uri.UriSchemeHttp, StringComparison.OrdinalIgnoreCase)) 91value.Scheme, value.GetType().ToString(), Uri.UriSchemeHttp)); 146if (value != null && value.IsAbsoluteUri && !(value.Scheme == Uri.UriSchemeHttp || value.Scheme == Uri.UriSchemeHttps)) 211httpDispatcherEnabled = EnsureGetDispatcher(host, mex, this.httpGetUrl, Uri.UriSchemeHttp); 254mex.HttpGetUrl = host.GetVia(Uri.UriSchemeHttp, this.httpGetUrl == null ? new Uri(string.Empty, UriKind.Relative) : this.httpGetUrl);
System\ServiceModel\Description\ServiceMetadataExtension.cs (7)
338if (listenUri.Scheme == Uri.UriSchemeHttp) 362throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.SFxGetChannelDispatcherDoesNotSupportScheme, typeof(ChannelDispatcher).Name, Uri.UriSchemeHttp, Uri.UriSchemeHttps))); 391if (listenUri.Scheme == Uri.UriSchemeHttp) 401throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.SFxGetChannelDispatcherDoesNotSupportScheme, typeof(ChannelDispatcher).Name, Uri.UriSchemeHttp, Uri.UriSchemeHttps))); 561Uri httpAddr = parent.owner.GetVia(Uri.UriSchemeHttp, location); 774if (this.listenUri.Scheme == Uri.UriSchemeHttp) 965if (this.listenUri.Scheme == Uri.UriSchemeHttp)
System\ServiceModel\Security\WSTrustServiceHost.cs (1)
113if (StringComparer.OrdinalIgnoreCase.Equals(baseAddress.Scheme, Uri.UriSchemeHttp))
System\UriTemplateTable.cs (1)
448ub.Scheme = Uri.UriSchemeHttp;
System.ServiceModel.Activation (8)
System\ServiceModel\Activation\ApplyHostConfigurationBehavior.cs (1)
121return string.Compare(scheme, Uri.UriSchemeHttp, StringComparison.OrdinalIgnoreCase) == 0 ||
System\ServiceModel\Activation\HostedAspNetEnvironment.cs (1)
357if (!object.ReferenceEquals(uri.Scheme, Uri.UriSchemeHttp) &&
System\ServiceModel\Activation\HostedHttpRequestAsyncResult.cs (1)
794object.ReferenceEquals(this.RequestUri.Scheme, Uri.UriSchemeHttp) || object.ReferenceEquals(this.RequestUri.Scheme, Uri.UriSchemeHttps),
System\ServiceModel\Activation\HostedTransportConfigurationManager.cs (2)
171if (string.CompareOrdinal(protocol, Uri.UriSchemeHttp) == 0 || 175if (string.CompareOrdinal(protocol, Uri.UriSchemeHttp) == 0)
System\ServiceModel\Activation\HttpHostedTransportConfiguration.cs (2)
28: this(Uri.UriSchemeHttp) 34if (object.ReferenceEquals(this.Scheme, Uri.UriSchemeHttp))
System\ServiceModel\Activation\MetabaseSettings.cs (1)
546this.Bindings.Add(Uri.UriSchemeHttp, serverBindings);
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Description\WorkflowInstanceManagementBehavior.cs (1)
135else if (workflowServiceHost.InternalBaseAddresses.Contains(Uri.UriSchemeHttp))
System.ServiceModel.WasHosting (6)
System\ServiceModel\WasHosting\MetabaseSettingsIis7.cs (6)
110else if (string.Compare(protocol, Uri.UriSchemeHttp, StringComparison.OrdinalIgnoreCase) == 0 || 115if (this.Bindings.ContainsKey(Uri.UriSchemeHttp)) 117this.Protocols.Add(Uri.UriSchemeHttp); 447else if (string.Compare(protocol, Uri.UriSchemeHttp, StringComparison.OrdinalIgnoreCase) == 0 || 452if (this.Bindings.ContainsKey(Uri.UriSchemeHttp)) 454this.Protocols.Add(Uri.UriSchemeHttp);
System.ServiceModel.Web (3)
System\ServiceModel\Web\WebChannelFactory.cs (2)
85if (remoteAddress == null || (remoteAddress.Scheme != Uri.UriSchemeHttp && remoteAddress.Scheme != Uri.UriSchemeHttps)) 89if (remoteAddress.Scheme == Uri.UriSchemeHttp)
System\ServiceModel\Web\WebServiceHost.cs (1)
85if (Object.ReferenceEquals(uriScheme, Uri.UriSchemeHttp) || Object.ReferenceEquals(uriScheme, Uri.UriSchemeHttps))
System.Web (3)
ErrorFormatter.cs (1)
790if (uri.Scheme == Uri.UriSchemeHttp || uri.Scheme == Uri.UriSchemeHttps)
UI\WebControls\XmlDataSource.cs (2)
450if (uri.Scheme == Uri.UriSchemeHttp) { 499if (uri.Scheme == Uri.UriSchemeHttp) {
System.Windows.Forms (1)
winforms\Managed\System\WinForms\TrustManager.cs (1)
696if (uri.Scheme == System.Uri.UriSchemeHttp || uri.Scheme == System.Uri.UriSchemeHttps)