23 references to UriSchemeHttp
BuildActionTelemetryTable (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\DiagnosticDescriptorExtensions.cs (1)
257(uri.Scheme == Uri.UriSchemeHttp || uri.Scheme == Uri.UriSchemeHttps) ? uri : null;
Microsoft.AspNetCore.Cors (1)
Infrastructure\CorsPolicyBuilder.cs (1)
72(uri.Scheme == Uri.UriSchemeHttp || uri.Scheme == Uri.UriSchemeHttps) &&
Microsoft.AspNetCore.Hosting (1)
GenericHost\GenericWebHostService.cs (1)
91var httpUrls = ExpandPorts(httpPorts, Uri.UriSchemeHttp);
Microsoft.AspNetCore.Server.IntegrationTesting (2)
Common\DeploymentParameters.cs (1)
116public string Scheme { get; set; } = Uri.UriSchemeHttp;
Common\TestUriHelper.cs (1)
20return BuildTestUri(serverType, Uri.UriSchemeHttp, hint, statusMessagesEnabled);
Microsoft.AspNetCore.WebSockets.ConformanceTests (1)
Autobahn\AutobahnTester.cs (1)
136Scheme = (ssl ? Uri.UriSchemeHttps : Uri.UriSchemeHttp),
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\DiagnosticDescriptorExtensions.cs (1)
257(uri.Scheme == Uri.UriSchemeHttp || uri.Scheme == Uri.UriSchemeHttps) ? uri : null;
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\DiagnosticDescriptorExtensions.cs (1)
257(uri.Scheme == Uri.UriSchemeHttp || uri.Scheme == Uri.UriSchemeHttps) ? uri : null;
Microsoft.DotNet.SignCheck (1)
SignCheck.cs (1)
203if ((Uri.TryCreate(inputFile, UriKind.Absolute, out uriResult)) && (uriResult.Scheme == Uri.UriSchemeHttp || uriResult.Scheme == Uri.UriSchemeHttps))
Microsoft.VisualStudio.LanguageServices (1)
Utilities\VisualStudioNavigateToLinkService.cs (1)
35if (uri.Scheme != Uri.UriSchemeHttp && uri.Scheme != Uri.UriSchemeHttps)
PresentationCore (7)
MS\Internal\IO\Packaging\ByteRangeDownloader.cs (1)
403if (!string.Equals(requestedUri.Scheme, Uri.UriSchemeHttp, StringComparison.Ordinal) && !string.Equals(requestedUri.Scheme, Uri.UriSchemeHttps, StringComparison.Ordinal))
MS\Internal\IO\Packaging\NetStream.cs (1)
93if (fullStreamLength > 0 && ((string.Equals(uri.Scheme, Uri.UriSchemeHttp, StringComparison.Ordinal)) ||
MS\Internal\IO\Packaging\PseudoWebRequest.cs (1)
343if (IsScheme(Uri.UriSchemeHttp))
System\Windows\Media\Imaging\BitmapDecoder.cs (3)
269((finalUri.Scheme == Uri.UriSchemeHttp) || 1015Debug.Assert((uri.Scheme == Uri.UriSchemeHttp) || (uri.Scheme == Uri.UriSchemeHttps)); 1057else if (uri.Scheme == Uri.UriSchemeHttp) // for http
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (1)
50if (uriToDecode.Scheme == Uri.UriSchemeHttp ||
PresentationFramework (2)
MS\Internal\AppModel\AppSecurityManager.cs (2)
78bool isKnownScheme = (Object.ReferenceEquals(destinationUri.Scheme, Uri.UriSchemeHttp)) || 138if (uri.Scheme != Uri.UriSchemeHttp && uri.Scheme != Uri.UriSchemeHttps)
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpAuthority.cs (1)
24var builder = new UriBuilder(Uri.UriSchemeHttp, host, port);
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (1)
332Debug.Assert(request.RequestUri.Scheme == Uri.UriSchemeHttp);
System.Net.HttpListener (1)
System\Net\ServiceNameStore.cs (1)
102if (!Uri.TryCreate(Uri.UriSchemeHttp + Uri.SchemeDelimiter + host, UriKind.Absolute, out constructedUri))
System.Private.Uri (1)
System\UriBuilder.cs (1)
36_uri = new Uri(Uri.UriSchemeHttp + Uri.SchemeDelimiter + uri);