49 references to Path
PresentationBuildTasks (2)
Shared\MS\Internal\ResourceIDHelper.cs (2)
61string basePath = baseUri.GetComponents(UriComponents.Path, UriFormat.UriEscaped); 62string sourcePath = sourceUri.GetComponents(UriComponents.Path, UriFormat.UriEscaped);
PresentationCore (4)
Core\CSharp\MS\Internal\FontCache\FontCacheUtil.cs (1)
755string unescapedPath = uri.GetComponents(UriComponents.Path, UriFormat.Unescaped);
Core\CSharp\MS\Internal\FontCache\FontResourceCache.cs (1)
104string path = uri.GetComponents(UriComponents.Path, UriFormat.SafeUnescaped);
Core\CSharp\MS\Internal\IO\Packaging\DeobfuscatingStream.cs (1)
220streamUri.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, UriFormat.UriEscaped));
Core\CSharp\System\Windows\Navigation\BaseUriHelper.cs (1)
218Debug.Assert(String.Compare(partName, uri.GetComponents(UriComponents.Path, UriFormat.UriEscaped), StringComparison.OrdinalIgnoreCase) == 0);
PresentationFramework (1)
src\Framework\System\Windows\Markup\XamlParseException.cs (1)
300bamlFilePath = resourceUri.GetComponents(UriComponents.Path, UriFormat.Unescaped);
System (25)
net\System\IriHelper.cs (2)
87(component != UriComponents.Path) && 108case UriComponents.Path:
net\System\Net\_AuthenticationState.cs (1)
121string spnKey = httpWebRequest.ChallengedUri.GetParts(UriComponents.Scheme | UriComponents.Host | UriComponents.Port | UriComponents.Path, UriFormat.SafeUnescaped);
net\System\Net\_DigestClient.cs (1)
563this.Uri = "/" + httpWebRequest.GetRemoteResourceUri().GetParts(UriComponents.Path,
net\System\Net\_FtpControlStream.cs (1)
781path = uri.GetComponents(UriComponents.Path,UriFormat.Unescaped);
net\System\Net\_SpnDictionary.cs (1)
197key = uri.GetParts(UriComponents.Scheme | UriComponents.Host | UriComponents.Port | UriComponents.Path, UriFormat.SafeUnescaped);
net\System\Net\FtpWebRequest.cs (1)
2053username += cacheUri.GetParts((UriComponents.Host | UriComponents.Port | UriComponents.Path | UriComponents.Query), UriFormat.SafeUnescaped);
net\System\Net\HttpWebRequest.cs (2)
4786string path = _Uri.GetComponents(UriComponents.Path | UriComponents.Query, UriFormat.UriEscaped); 4812string path = _Uri.GetComponents(UriComponents.Path | UriComponents.Query, UriFormat.UriEscaped);
net\System\URI.cs (13)
728result = GetParts(UriComponents.Path | UriComponents.KeepDelimiter, UriFormat.UriEscaped); 1135return GetUnescapedParts(UriComponents.Path | UriComponents.KeepDelimiter, UriFormat.Unescaped); 1448return GetParts(NonPathPart | UriComponents.Path, UriFormat.UriEscaped); 1451return GetParts(NonPathPart | UriComponents.Path | UriComponents.Query, UriFormat.UriEscaped); 2719if ((uriParts & UriComponents.Path) != 0) { 2746if ((uriParts & UriComponents.Path) != 0) { 2931if ((parts & UriComponents.Path) != 0) 2936if (parts == UriComponents.Path) 3141case UriComponents.Path: 3144if (uriParts == UriComponents.Path && InFact(Flags.AuthorityFound) && 3356string escapedPath = EscapeUnescapeIri(m_originalUnicodeString, offset, origIdx, UriComponents.Path); 5036string share = basePart.GetParts(UriComponents.Path | UriComponents.KeepDelimiter, 5097left = basePart.GetParts(UriComponents.Path | UriComponents.KeepDelimiter,
net\System\UriEnumTypes.cs (3)
53AbsoluteUri = Scheme | UserInfo | Host | Port | Path | Query | Fragment, 57HttpRequestUrl = Scheme | Host | Port | Path | Query, 58PathAndQuery = Path | Query,
System.ServiceModel (11)
System\ServiceModel\Channels\BaseUriWithWildcard.cs (3)
257string s1 = baseAddress.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, UriFormat.Unescaped); 258string s2 = fullAddress.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, UriFormat.Unescaped); 316this.comparand.Address = this.baseAddress.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, UriFormat.UriEscaped);
System\ServiceModel\Channels\PeerMessageDispatcher.cs (2)
173(UriComponents.Scheme | UriComponents.UserInfo | UriComponents.Host | UriComponents.Port | UriComponents.Path), 181(UriComponents.Scheme | UriComponents.UserInfo | UriComponents.Host | UriComponents.Port | UriComponents.Path),
System\ServiceModel\Channels\PeerNodeImplementation.cs (1)
688(UriComponents.Scheme | UriComponents.UserInfo | UriComponents.Host | UriComponents.Port | UriComponents.Path),
System\ServiceModel\Channels\SharedHttpTransportManager.cs (1)
539string path = ListenUri.GetComponents(UriComponents.Path, UriFormat.Unescaped);
System\ServiceModel\EndpointAddress.cs (3)
385string u1Path = u1.GetComponents(UriComponents.Path, UriFormat.Unescaped); 386string u2Path = u2.GetComponents(UriComponents.Path, UriFormat.Unescaped); 404UriComponents components = UriComponents.Scheme | UriComponents.Path;
System\UriTemplateHelpers.cs (1)
137return uri.GetComponents(UriComponents.Path | UriComponents.KeepDelimiter, UriFormat.Unescaped);
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\ScopeCompiler.cs (2)
242guidString = scope.GetComponents(UriComponents.Path, UriFormat.UriEscaped); 315string dn = scope.GetComponents(UriComponents.Path, UriFormat.Unescaped);
WindowsBase (4)
Base\System\IO\Packaging\PackUriHelper.cs (2)
809new Uri(_defaultUri, partName).GetComponents(UriComponents.Path | 932new Uri(partUri.GetComponents(UriComponents.Path |
Shared\MS\Internal\ResourceIDHelper.cs (2)
61string basePath = baseUri.GetComponents(UriComponents.Path, UriFormat.UriEscaped); 62string sourcePath = sourceUri.GetComponents(UriComponents.Path, UriFormat.UriEscaped);