2 references to s_safeUrlChars
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Net\WebUtility.cs (2)
314
for (int i = value.AsSpan().IndexOfAnyExcept(
s_safeUrlChars
); (uint)i < (uint)value.Length; i++)
581
private static bool IsUrlSafe(char ch) =>
s_safeUrlChars
.Contains(ch);