22 references to AuthorityFound
System.Private.Uri (22)
System\Uri.cs (20)
1361
if (NotAny(Flags.
AuthorityFound
) || IsDosPath)
2032
_flags |= Flags.
AuthorityFound
;
2052
_flags |= Flags.
AuthorityFound
;
2078
_flags |= Flags.UnixPath | Flags.
AuthorityFound
;
2099
_flags |= Flags.
AuthorityFound
;
2107
else if (_syntax.InFact(UriSyntaxFlags.OptionalAuthority) && (InFact(Flags.
AuthorityFound
) ||
2110
_flags |= Flags.
AuthorityFound
;
2150
_flags |= (((_flags & Flags.
AuthorityFound
) != 0) ? Flags.BasicHostType : Flags.UnknownHostType);
2253
if ((cF & Flags.
AuthorityFound
) != 0)
2746
if (InFact(Flags.
AuthorityFound
))
2880
if (InFact(Flags.
AuthorityFound
) && dest.Length != 0 && dest[0] == '/')
3040
if (uriParts == UriComponents.Path && InFact(Flags.
AuthorityFound
) &&
3189
if ((cF & Flags.
AuthorityFound
) != 0 && !str.Slice(schemeLength).StartsWith("://", StringComparison.Ordinal))
3275
if (((cF & Flags.
AuthorityFound
) != 0) && ((syntaxFlags & UriSyntaxFlags.PathIsRooted) != 0)
3285
if ((cF & Flags.DosPath) != 0 || (((cF & Flags.
AuthorityFound
) != 0) &&
3434
if ((flags & Flags.
AuthorityFound
) != 0)
3526
flags |= (Flags.UnixPath | Flags.ImplicitFile | Flags.
AuthorityFound
);
3551
flags |= (Flags.DosPath | Flags.ImplicitFile | Flags.
AuthorityFound
);
3568
flags |= (Flags.UncPath | Flags.ImplicitFile | Flags.
AuthorityFound
);
4877
return InFact(Flags.
AuthorityFound
);
System\UriExt.cs (2)
436
if (InFact(Flags.
AuthorityFound
))
722
if (baseUri.InFact(Flags.
AuthorityFound
))