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