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