21 references to AuthorityFound
System (21)
net\System\URI.cs (17)
1431
if (NotAny(Flags.
AuthorityFound
) || IsDosPath) {
2084
m_Flags |= Flags.
AuthorityFound
;
2103
m_Flags |= Flags.
AuthorityFound
;
2148
m_Flags |= Flags.
AuthorityFound
;
2155
else if (m_Syntax.InFact(UriSyntaxFlags.OptionalAuthority) && (InFact(Flags.
AuthorityFound
) ||
2157
m_Flags |= Flags.
AuthorityFound
;
2194
m_Flags |= (((m_Flags & Flags.
AuthorityFound
)!= 0)? Flags.BasicHostType :Flags.UnknownHostType);
2306
if ((cF & Flags.
AuthorityFound
) != 0)
2790
if (InFact(Flags.
AuthorityFound
)) {
2938
if (InFact(Flags.
AuthorityFound
) && count !=0 && chars[0] == '/')
3144
if (uriParts == UriComponents.Path && InFact(Flags.
AuthorityFound
) &&
3283
if (((m_Flags & Flags.
AuthorityFound
) != 0) && (idx + i + 3 >= length || str[idx + i + 1] != '/' ||
3398
if (((m_Flags & Flags.
AuthorityFound
) != 0) && ((syntaxFlags & UriSyntaxFlags.PathIsRooted) != 0)
3407
if (IsDosPath || (((m_Flags & Flags.
AuthorityFound
) != 0) &&
3645
flags |= (Flags.DosPath|Flags.ImplicitFile|Flags.
AuthorityFound
);
3663
flags |= (Flags.UncPath|Flags.ImplicitFile|Flags.
AuthorityFound
);
5243
return InFact(Flags.
AuthorityFound
);
net\System\UriExt.cs (4)
524
if (InFact(Flags.
AuthorityFound
))
579
if ((m_Flags & (Flags.SchemeNotCanonical | Flags.
AuthorityFound
))
580
== (Flags.SchemeNotCanonical | Flags.
AuthorityFound
))
806
if (baseUri.InFact(Flags.
AuthorityFound
))