7 references to CheckCanonical
System.Private.Uri (7)
System\Uri.cs (5)
2440Check result = CheckCanonical(host, c_DummyChar, out _); 3219result = CheckCanonical(_string.AsSpan(idx, _info.Offset.Host - idx), '@', out _); 3355result = CheckCanonical(_string.AsSpan(idx, length - idx), delim, out int checkedChars); 3483result = CheckCanonical(_string.AsSpan(idx, length - idx), (syntaxFlags & (UriSyntaxFlags.MayHaveFragment)) != 0 ? '#' : c_EOL, out int charsChecked); 3531result = CheckCanonical(_string.AsSpan(idx, length - idx), c_EOL, out int checkedChars);
System\UriExt.cs (2)
396return (CheckCanonical(str, c_EOL, out _) & (Check.BackslashInPath | Check.EscapedCanonical)) == Check.EscapedCanonical; 480Check result = CheckCanonical(str.AsSpan(idx, _info.Offset.Path - idx), '/', out _);