3 references to UrlDecode
System.Web.HttpUtility (3)
System\Web\HttpUtility.cs (2)
209return HttpEncoder.UrlDecode(bytes.Slice(0, encodedBytes)); 216public static byte[]? UrlDecodeToBytes(byte[]? bytes) => bytes == null ? null : HttpEncoder.UrlDecode(bytes);
System\Web\Util\HttpEncoder.cs (1)
204return UrlDecode(bytes.AsSpan(offset, count));