4 references to DecodeRequestLine
Microsoft.AspNetCore.Shared.Tests (4)
src\Shared\UrlDecoder\UrlDecoder.cs (1)
355/// Form Encoding is not supported compared to the <see cref="DecodeRequestLine(ReadOnlySpan{byte}, Span{byte}, bool)" />
UrlDecoderTests.cs (3)
29int length = UrlDecoder.DecodeRequestLine(input.AsSpan(), destination.AsSpan(), false); 64Assert.Throws<ArgumentException>(() => UrlDecoder.DecodeRequestLine(source.AsSpan(), source.AsSpan(0, 1), false)); 79var length = UrlDecoder.DecodeRequestLine(source.AsSpan(), new byte[source.Length + 10], false);