3 references to DecodeRequestLine
Microsoft.AspNetCore.Shared.Tests (3)
UrlDecoderTests.cs (3)
20
int length = UrlDecoder.
DecodeRequestLine
(input.AsSpan(), destination.AsSpan());
57
Assert.Throws<ArgumentException>(() => UrlDecoder.
DecodeRequestLine
(source.AsSpan(), source.AsSpan(0, 1)));
71
var length = UrlDecoder.
DecodeRequestLine
(source.AsSpan(), new char[source.Length + 10]);