30 references to Fragment
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\UriSchemeKeyedCollection.cs (1)
74if (!string.IsNullOrEmpty(uri.Fragment))
Microsoft.CodeAnalysis.LanguageServer (1)
CustomExportAssemblyLoader.cs (1)
111var possibleCodeBasePath = Uri.UnescapeDataString(codeBaseUri.PathAndQuery) + Uri.UnescapeDataString(codeBaseUri.Fragment);
Microsoft.Maui (2)
Handlers\WebView\WebViewHandler.iOS.cs (1)
151 var safeRelativeUri = new Uri($"{uri.PathAndQuery}{uri.Fragment}", UriKind.Relative);
Platform\iOS\MauiWKWebView.cs (1)
110 var safeRelativeUri = new Uri($"{uri.PathAndQuery}{uri.Fragment}", UriKind.Relative);
Microsoft.Maui.Controls (1)
Shell\ShellUriHandler.cs (1)
217 var navigationRequest = new ShellNavigationRequest(definition, whatDoIDo, request.Query, request.Fragment);
Microsoft.Maui.Controls.Compatibility (1)
iOS\Renderers\WkWebViewRenderer.cs (1)
182 var safeRelativeUri = new Uri($"{uri.PathAndQuery}{uri.Fragment}", UriKind.Relative);
Microsoft.Maui.Essentials (3)
Types\Shared\WebUtils.shared.cs (3)
21 if (!string.IsNullOrEmpty(uri.Fragment)) 22 UnpackParameters(uri.Fragment.AsSpan(1), parameters); 87 return new Uri(uri.Scheme + "://" + idn.GetAscii(uri.Authority) + uri.PathAndQuery + uri.Fragment);
PresentationCore (1)
MS\Internal\FontCache\FontSource.cs (1)
72Debug.Assert(_isInternalCompositeFont || String.IsNullOrEmpty(_fontUri.Fragment));
PresentationFramework (6)
MS\Internal\Utility\BindUriHelper.cs (1)
159frag = workuri.Fragment;
System\Windows\Documents\FixedPage.cs (2)
635String fragment = workuri.Fragment; 1094String fragment = startPartUri.Fragment;
System\Windows\Navigation\JournalEntry.cs (1)
338string relativeUri = uri.AbsolutePath + uri.Query + uri.Fragment;
System\Windows\Navigation\NavigationService.cs (2)
216isSame = isSame && string.Equals(aResolved.Fragment, bResolved.Fragment, StringComparison.OrdinalIgnoreCase);
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\DesigntimeLicenseContext.cs (1)
55return uri.LocalPath + uri.Fragment;
System.IO.Packaging (2)
System\IO\Packaging\PackUriHelper.PackUriScheme.cs (2)
90if (!string.IsNullOrEmpty(packageUri.Fragment)) 315if (packageUri.Fragment != string.Empty)
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\RedirectHandler.cs (2)
121string requestFragment = requestUri.Fragment; 124string redirectFragment = location.Fragment;
System.Net.Security (2)
src\libraries\Common\src\System\Net\Http\X509ResourceClient.cs (2)
280string requestFragment = requestUri.Fragment; 283string redirectFragment = location.Fragment;
System.Private.Uri (2)
System\UriBuilder.cs (1)
286_fragment = _uri.Fragment;
System\UriCreationOptions.cs (1)
16/// <see cref="Uri"/> instances created with this option do not support <see cref="Uri.Fragment"/>s.
System.Security.Cryptography (2)
src\libraries\Common\src\System\Net\Http\X509ResourceClient.cs (2)
280string requestFragment = requestUri.Fragment; 283string redirectFragment = location.Fragment;
System.Windows.Forms (3)
System\Windows\Forms\Help\Help.cs (3)
254string localPath = file.LocalPath + file.Fragment; 278string localPath = file.LocalPath + file.Fragment; 301string ext = Path.GetExtension(file is null ? url : file.LocalPath + file.Fragment).ToLower(CultureInfo.InvariantCulture);