14 references to UriPartial
PresentationCore (3)
Core\CSharp\MS\Internal\WpfWebRequestHelper.cs (1)
81uri = new Uri(uri.GetLeftPart(UriPartial.Path));
Core\CSharp\System\Windows\Navigation\BaseUriHelper.cs (1)
499baseUri = new Uri(uri.GetLeftPart(UriPartial.Authority), UriKind.Absolute);
Shared\MS\Internal\MimeTypeMapper.cs (1)
137docstring = uri.GetLeftPart(UriPartial.Path);
System (5)
net\System\URI.cs (5)
1416public string GetLeftPart(UriPartial part) { 1425case UriPartial.Scheme: 1429case UriPartial.Authority: 1447case UriPartial.Path: 1450case UriPartial.Query:
System.Data.SqlXml (1)
System\Xml\Xsl\Runtime\XmlCollation.cs (1)
158string authority = collationUri.GetLeftPart(UriPartial.Authority);
System.IdentityModel (2)
System\IdentityModel\Tokens\SamlSecurityTokenRequirement.cs (2)
364audienceLeftPart = new Uri(audience.GetLeftPart(UriPartial.Path)); 370audienceLeftPart = baseUri.MakeRelativeUri(new Uri(resolved.GetLeftPart(UriPartial.Path)));
System.Web.Services (3)
System\Web\Services\Protocols\DiscoveryServerProtocol.cs (1)
56uri = uriObject.GetLeftPart(UriPartial.Path);
System\Web\Services\Protocols\DocumentationServerProtocol.cs (1)
56uri = uriObject.GetLeftPart(UriPartial.Path);
System\Web\Services\Protocols\ServerProtocol.cs (1)
210string url = excludeSchemeHostPort ? Request.Url.AbsolutePath : Request.Url.GetLeftPart(UriPartial.Path);