46 references to Path
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\EndpointAddress.cs (3)
383string u1Path = u1.GetComponents(UriComponents.Path, UriFormat.Unescaped); 384string u2Path = u2.GetComponents(UriComponents.Path, UriFormat.Unescaped); 402UriComponents components = UriComponents.Scheme | UriComponents.Path;
Microsoft.AspNetCore.Http.Abstractions (1)
PathString.cs (1)
202var uriComponent = uri.GetComponents(UriComponents.Path, UriFormat.UriEscaped);
Microsoft.Build.Tasks.Git (1)
src\sourcelink\src\Common\Utilities\UriUtilities.cs (1)
86=> uri.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, Format);
Microsoft.SourceLink.AzureDevOpsServer.Git (1)
src\sourcelink\src\Common\Utilities\UriUtilities.cs (1)
86=> uri.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, Format);
Microsoft.SourceLink.AzureRepos.Git (1)
src\sourcelink\src\Common\Utilities\UriUtilities.cs (1)
86=> uri.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, Format);
Microsoft.SourceLink.Bitbucket.Git (1)
src\sourcelink\src\Common\Utilities\UriUtilities.cs (1)
86=> uri.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, Format);
Microsoft.SourceLink.Common (1)
src\sourcelink\src\Common\Utilities\UriUtilities.cs (1)
86=> uri.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, Format);
Microsoft.SourceLink.Gitea (1)
src\sourcelink\src\Common\Utilities\UriUtilities.cs (1)
86=> uri.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, Format);
Microsoft.SourceLink.Gitee (1)
src\sourcelink\src\Common\Utilities\UriUtilities.cs (1)
86=> uri.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, Format);
Microsoft.SourceLink.GitHub (1)
src\sourcelink\src\Common\Utilities\UriUtilities.cs (1)
86=> uri.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, Format);
Microsoft.SourceLink.GitLab (1)
src\sourcelink\src\Common\Utilities\UriUtilities.cs (1)
86=> uri.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, Format);
Microsoft.SourceLink.GitWeb (1)
src\sourcelink\src\Common\Utilities\UriUtilities.cs (1)
86=> uri.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, Format);
NuGet.Packaging (1)
PackageCreation\Authoring\PackageBuilder.cs (1)
1170Uri safeUnescapedUri = new Uri(partUri.GetComponents(UriComponents.Path, UriFormat.SafeUnescaped), UriKind.Relative);
PresentationBuildTasks (2)
src\wpf\src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\ResourceIDHelper.cs (2)
61string basePath = baseUri.GetComponents(UriComponents.Path, UriFormat.UriEscaped); 62string sourcePath = sourceUri.GetComponents(UriComponents.Path, UriFormat.UriEscaped);
PresentationCore (4)
MS\Internal\FontCache\FontCacheUtil.cs (1)
584string unescapedPath = uri.GetComponents(UriComponents.Path, UriFormat.Unescaped);
MS\Internal\FontCache\FontResourceCache.cs (1)
99string path = uri.GetComponents(UriComponents.Path, UriFormat.SafeUnescaped);
MS\Internal\IO\Packaging\DeobfuscatingStream.cs (1)
211streamUri.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, UriFormat.UriEscaped));
System\Windows\Navigation\BaseUriHelper.cs (1)
179Debug.Assert(string.Equals(partName, uri.GetComponents(UriComponents.Path, UriFormat.UriEscaped), StringComparison.OrdinalIgnoreCase));
PresentationFramework (1)
System\Windows\Markup\XamlParseException.cs (1)
279bamlFilePath = resourceUri.GetComponents(UriComponents.Path, UriFormat.Unescaped);
System.IO.Packaging (2)
System\IO\Packaging\PackUriHelper.cs (2)
406new Uri(s_defaultUri, partName).GetComponents(UriComponents.Path | 537new Uri(partUri.GetComponents(UriComponents.Path |
System.Net.Requests (1)
System\Net\FtpControlStream.cs (1)
778path = uri.GetComponents(UriComponents.Path, UriFormat.Unescaped);
System.Private.Uri (18)
System\Uri.cs (12)
744return info.Path ??= GetParts(UriComponents.Path | UriComponents.KeepDelimiter, UriFormat.UriEscaped); 1082return GetUnescapedParts(UriComponents.Path | UriComponents.KeepDelimiter, UriFormat.Unescaped); 1378return GetParts(NonPathPart | UriComponents.Path, UriFormat.UriEscaped); 1381return GetParts(NonPathPart | UriComponents.Path | UriComponents.Query, UriFormat.UriEscaped); 2640if ((uriParts & UriComponents.Path) != 0) 2675if ((uriParts & UriComponents.Path) != 0) 2872if ((parts & UriComponents.Path) != 0) 2877if (parts == UriComponents.Path) 3037case UriComponents.Path: 3040if (uriParts == UriComponents.Path && InFact(Flags.AuthorityFound) && 4451ReadOnlySpan<char> share = basePart.GetParts(UriComponents.Path | UriComponents.KeepDelimiter, UriFormat.Unescaped); 4507left = basePart.GetParts(UriComponents.Path | UriComponents.KeepDelimiter,
System\UriCreationOptions.cs (1)
17/// <see cref="Uri.GetComponents(UriComponents, UriFormat)"/> may not be used for <see cref="UriComponents.Path"/> or <see cref="UriComponents.Query"/>.
System\UriEnumTypes.cs (3)
39AbsoluteUri = Scheme | UserInfo | Host | Port | Path | Query | Fragment, 43HttpRequestUrl = Scheme | Host | Port | Path | Query, 44PathAndQuery = Path | Query,
System\UriExt.cs (1)
292if (DisablePathAndQueryCanonicalization && (components & (UriComponents.Path | UriComponents.Query)) != 0)
System\UriScheme.cs (1)
149if (uri.DisablePathAndQueryCanonicalization && (components & (UriComponents.Path | UriComponents.Query)) != 0)
System.ServiceModel.Primitives (3)
System\ServiceModel\EndpointAddress.cs (3)
349string u1Path = u1.GetComponents(UriComponents.Path, UriFormat.Unescaped); 350string u2Path = u2.GetComponents(UriComponents.Path, UriFormat.Unescaped); 368UriComponents components = UriComponents.Scheme | UriComponents.Path;