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