53 references to AbsolutePath
PresentationCore (5)
Core\CSharp\System\Windows\Media\ColorContext.cs (3)
639
throw new FileNotFoundException(SR.Get(SRID.FileNotFoundExceptionWithFileName, profileUri.
AbsolutePath
), profileUri.
AbsolutePath
);
643
FromStream(profileStream, profileUri.
AbsolutePath
);
Core\CSharp\System\Windows\Navigation\BaseUriHelper.cs (2)
204
Uri partUri = new Uri(uri.
AbsolutePath
, UriKind.Relative);
498
source = new Uri(uri.
AbsolutePath
, UriKind.Relative);
PresentationFramework (1)
src\Framework\System\Windows\Navigation\JournalEntry.cs (1)
383
string relativeUri = uri.
AbsolutePath
+ uri.Query + uri.Fragment;
System (15)
net\System\Net\_FtpControlStream.cs (1)
959
string orginalPath = baseUri.
AbsolutePath
;
net\System\Net\cookie.cs (1)
357
string path = uri.
AbsolutePath
;
net\System\Net\cookiecontainer.cs (1)
774
if (uri.
AbsolutePath
.StartsWith(CookieParser.CheckQuoted(path))) {
net\System\Net\CredentialCache.cs (4)
522
int prefixLen = prefixUri.
AbsolutePath
.LastIndexOf('/');
523
if (prefixLen > uri.
AbsolutePath
.LastIndexOf('/'))
526
return String.Compare(uri.
AbsolutePath
, 0, prefixUri.
AbsolutePath
, 0, prefixLen, StringComparison.OrdinalIgnoreCase ) == 0;
net\System\Net\NetWebProxyFinder.cs (1)
444
if (!tryParse || uri.UserInfo.Length > 0 || uri.HostNameType == UriHostNameType.Basic || uri.
AbsolutePath
.Length != 1 || proxyAuthority[proxyAuthority.Length - 1] == '/' || proxyAuthority[proxyAuthority.Length - 1] == '#' || proxyAuthority[proxyAuthority.Length - 1] == '?')
net\System\URI.cs (4)
1922
String otherPath = uri.
AbsolutePath
;
1925
String relativeUriString = PathDifference(
AbsolutePath
, otherPath, !IsUncOrDosPath);
5319
return PathDifference(
AbsolutePath
, toUri.
AbsolutePath
, !IsUncOrDosPath);
net\System\uribuilder.cs (2)
72
m_path = uri.
AbsolutePath
;
382
m_path = uri.
AbsolutePath
;
sys\system\Media\SoundPlayer.cs (1)
316
WebPermission webPerm = new WebPermission(NetworkAccess.Connect, uri.
AbsolutePath
);
System.Data.Entity (1)
System\Data\Metadata\Helper.cs (1)
337
return uri.
AbsolutePath
;
System.ServiceModel (16)
System\ServiceModel\Channels\ContextProtocol.cs (1)
92
uri.
AbsolutePath
);
System\ServiceModel\Channels\HttpTransportManager.cs (2)
160
&& string.Compare(requestUri.
AbsolutePath
, methodListener.Uri.
AbsolutePath
, StringComparison.OrdinalIgnoreCase) != 0)
System\ServiceModel\Channels\PnrpPeerResolver.cs (2)
567
if ((ProtocolFromName(uri.Scheme) != 0) && !String.IsNullOrEmpty(uri.
AbsolutePath
))
570
string[] parts = uri.
AbsolutePath
.Trim(new char[] { ' ', PathSeparator }).Split(PathSeparator);
System\ServiceModel\Channels\TransportChannelListener.cs (3)
341
if (baseUri.
AbsolutePath
.Length < fullUri.
AbsolutePath
.Length)
601
if (!baseAddress.
AbsolutePath
.EndsWith("/", StringComparison.Ordinal))
System\ServiceModel\Channels\TransportSecurityHelpers.cs (1)
543
if (!baseAddress.
AbsolutePath
.EndsWith("/", StringComparison.Ordinal))
System\ServiceModel\Channels\UriPrefixTable.cs (1)
344
string absPath = this.uri.
AbsolutePath
;
System\ServiceModel\EndpointAddress.cs (2)
379
if (string.Compare(u1.
AbsolutePath
, u2.
AbsolutePath
, ignoreCase ? StringComparison.OrdinalIgnoreCase : StringComparison.Ordinal) == 0)
System\ServiceModel\Security\FederatedSecurityTokenManager.cs (2)
597
return String.Format( CultureInfo.InvariantCulture, "{0}://NormalizedHostName{1}", listenUri.Scheme, listenUri.
AbsolutePath
);
601
return String.Format( CultureInfo.InvariantCulture, "{0}://NormalizedHostName:{1}{2}", listenUri.Scheme, listenUri.Port, listenUri.
AbsolutePath
);
System\ServiceModel\Transactions\WsatConfiguration.cs (1)
215
return endpoint.Uri.
AbsolutePath
== DisabledRegistrationPath;
System\UriTemplateLiteralPathSegment.cs (1)
53
string escapedIfNecessarySegment = ub.Uri.
AbsolutePath
.Substring(1);
System.ServiceModel.Activation (2)
System\ServiceModel\Activation\HostedAspNetEnvironment.cs (1)
517
string fileName = VirtualPathUtility.GetFileName(baseAddress.
AbsolutePath
);
System\ServiceModel\Activities\Activation\WorkflowServiceHostFactory.cs (1)
462
compiledCustomString = BuildManager.GetCompiledCustomString(baseAddresses[0].
AbsolutePath
);
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpUtility.cs (1)
22
if (!basepath.
AbsolutePath
.EndsWith("/", StringComparison.Ordinal))
System.Web (2)
HttpRequest.cs (1)
186
_path = VirtualPath.CreateAbsolute(_url.
AbsolutePath
);
Security\FormsAuthentication.cs (1)
920
return HttpRuntime.IsPathWithinAppRoot(absUri.
AbsolutePath
);
System.Web.Services (2)
System\Web\Services\Discovery\DiscoveryClientProtocol.cs (2)
266
int dotIndex = response.ResponseUri.
AbsolutePath
.LastIndexOf('.');
268
switch (response.ResponseUri.
AbsolutePath
.Substring(dotIndex + 1).ToLower(CultureInfo.InvariantCulture)) {
System.Windows.Forms (1)
winforms\Managed\System\WinForms\TrustManager.cs (1)
702
host = uri.
AbsolutePath
;
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Themes.cs (1)
310
path = new Uri(Assembly.GetExecutingAssembly().CodeBase).
AbsolutePath
;
System.Workflow.Runtime (2)
DebugEngine\DebugController.cs (2)
487
this.controllerConduit = Activator.GetObject(Type.GetType(controllerConduitTypeName), url.
AbsolutePath
) as IWorkflowDebugger;
512
this.controllerConduit = Activator.GetObject(controllerConduitType, url.
AbsolutePath
) as IWorkflowDebugger;
System.WorkflowServices (3)
System\ServiceModel\Activation\WorkflowServiceHostFactory.cs (3)
152
compiledString = BuildManager.GetCompiledCustomString(baseAddresses[0].
AbsolutePath
);
169
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR2.GetString(SR2.InvalidCompiledString, baseAddresses[0].
AbsolutePath
)));
174
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR2.GetString(SR2.InvalidCompiledString, baseAddresses[0].
AbsolutePath
)));
WindowsBase (1)
Base\System\IO\Packaging\PackUriHelper.cs (1)
284
return new Uri(resolvedUri.
AbsolutePath
, UriKind.Relative);