22 references to AuthorityFound
System.Private.Uri (22)
System\Uri.cs (20)
1377
if (NotAny(Flags.
AuthorityFound
) || IsDosPath)
2048
_flags |= Flags.
AuthorityFound
;
2068
_flags |= Flags.
AuthorityFound
;
2094
_flags |= Flags.UnixPath | Flags.
AuthorityFound
;
2115
_flags |= Flags.
AuthorityFound
;
2123
else if (_syntax.InFact(UriSyntaxFlags.OptionalAuthority) && (InFact(Flags.
AuthorityFound
) ||
2126
_flags |= Flags.
AuthorityFound
;
2166
_flags |= (((_flags & Flags.
AuthorityFound
) != 0) ? Flags.BasicHostType : Flags.UnknownHostType);
2269
if ((cF & Flags.
AuthorityFound
) != 0)
2762
if (InFact(Flags.
AuthorityFound
))
2896
if (InFact(Flags.
AuthorityFound
) && dest.Length != 0 && dest[0] == '/')
3056
if (uriParts == UriComponents.Path && InFact(Flags.
AuthorityFound
) &&
3209
if ((_flags & Flags.
AuthorityFound
) != 0 && !str.Slice(schemeLength).StartsWith("://", StringComparison.Ordinal))
3258
InFact(Flags.
AuthorityFound
) ? _syntax.SchemeName + SchemeDelimiter :
3369
if (((_flags & Flags.
AuthorityFound
) != 0) && ((syntaxFlags & UriSyntaxFlags.PathIsRooted) != 0)
3379
if (IsDosPath || (((_flags & Flags.
AuthorityFound
) != 0) &&
3580
flags |= (Flags.UnixPath | Flags.ImplicitFile | Flags.
AuthorityFound
);
3609
flags |= (Flags.DosPath | Flags.ImplicitFile | Flags.
AuthorityFound
);
3626
flags |= (Flags.UncPath | Flags.ImplicitFile | Flags.
AuthorityFound
);
4941
return InFact(Flags.
AuthorityFound
);
System\UriExt.cs (2)
440
if (InFact(Flags.
AuthorityFound
))
786
if (baseUri.InFact(Flags.
AuthorityFound
))