22 references to AuthorityFound
System.Private.Uri (22)
System\Uri.cs (20)
1380
if (NotAny(Flags.
AuthorityFound
) || IsDosPath)
2051
_flags |= Flags.
AuthorityFound
;
2071
_flags |= Flags.
AuthorityFound
;
2097
_flags |= Flags.UnixPath | Flags.
AuthorityFound
;
2118
_flags |= Flags.
AuthorityFound
;
2126
else if (_syntax.InFact(UriSyntaxFlags.OptionalAuthority) && (InFact(Flags.
AuthorityFound
) ||
2129
_flags |= Flags.
AuthorityFound
;
2169
_flags |= (((_flags & Flags.
AuthorityFound
) != 0) ? Flags.BasicHostType : Flags.UnknownHostType);
2272
if ((cF & Flags.
AuthorityFound
) != 0)
2765
if (InFact(Flags.
AuthorityFound
))
2899
if (InFact(Flags.
AuthorityFound
) && dest.Length != 0 && dest[0] == '/')
3059
if (uriParts == UriComponents.Path && InFact(Flags.
AuthorityFound
) &&
3208
if ((cF & Flags.
AuthorityFound
) != 0 && !str.Slice(schemeLength).StartsWith("://", StringComparison.Ordinal))
3294
if (((cF & Flags.
AuthorityFound
) != 0) && ((syntaxFlags & UriSyntaxFlags.PathIsRooted) != 0)
3304
if ((cF & Flags.DosPath) != 0 || (((cF & Flags.
AuthorityFound
) != 0) &&
3453
if ((flags & Flags.
AuthorityFound
) != 0)
3545
flags |= (Flags.UnixPath | Flags.ImplicitFile | Flags.
AuthorityFound
);
3574
flags |= (Flags.DosPath | Flags.ImplicitFile | Flags.
AuthorityFound
);
3591
flags |= (Flags.UncPath | Flags.ImplicitFile | Flags.
AuthorityFound
);
4911
return InFact(Flags.
AuthorityFound
);
System\UriExt.cs (2)
442
if (InFact(Flags.
AuthorityFound
))
777
if (baseUri.InFact(Flags.
AuthorityFound
))