18 references to UriSchemeHttps
BuildActionTelemetryTable (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\DiagnosticDescriptorExtensions.cs (1)
257(uri.Scheme == Uri.UriSchemeHttp || uri.Scheme == Uri.UriSchemeHttps) ? uri : null;
Interop.FunctionalTests (2)
HttpClientHttp2InteropTests.cs (2)
1633var url = host.MakeUrl(Uri.UriSchemeHttps); 1678var url = host.MakeUrl(Uri.UriSchemeHttps);
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)
92var httpsUrls = ExpandPorts(httpsPorts, Uri.UriSchemeHttps);
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 (6)
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)
94(string.Equals(uri.Scheme, Uri.UriSchemeHttps, StringComparison.Ordinal))))
System\Windows\Media\Imaging\BitmapDecoder.cs (3)
270(finalUri.Scheme == Uri.UriSchemeHttps))) 1015Debug.Assert((uri.Scheme == Uri.UriSchemeHttp) || (uri.Scheme == Uri.UriSchemeHttps)); 1061else if (uri.Scheme == Uri.UriSchemeHttps) // for https
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (1)
51uriToDecode.Scheme == Uri.UriSchemeHttps)
PresentationFramework (2)
MS\Internal\AppModel\AppSecurityManager.cs (2)
79(Object.ReferenceEquals(destinationUri.Scheme, Uri.UriSchemeHttps)) || 138if (uri.Scheme != Uri.UriSchemeHttp && uri.Scheme != Uri.UriSchemeHttps)