8 references to IsRooted
System.Web (8)
HttpResponse.cs (2)
1016
if (StringUtil.StringStartsWith(path, "\\\\") || path.IndexOf(':') >= 0 || !UrlPath.
IsRooted
(path))
3232
if (!UrlPath.
IsRooted
(virtualPath) || virtualPath.StartsWith("//", StringComparison.Ordinal)) {
Util\UrlPath.cs (6)
64
return !
IsRooted
(virtualPath);
181
if (
IsRooted
(relative)) {
352
if (!
IsRooted
(from))
354
if (!
IsRooted
(to))
630
if (!
IsRooted
(virtualPath))
728
((
IsRooted
(absUriOrLocalPath) || IsRelativeUrl(absUriOrLocalPath)) && !absUriOrLocalPath.TrimStart(' ').StartsWith("//", StringComparison.Ordinal));