2 references to s_safeUrlBytes
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Net\WebUtility.cs (2)
388
for (int i = source.IndexOfAnyExcept(
s_safeUrlBytes
); (uint)i < (uint)source.Length; i++)
584
private static bool IsUrlSafe(byte ch) =>
s_safeUrlBytes
.Contains(ch);