Fixed Proxy when using MultipartForm with byte[] (#473)

* wip

* ByteArrayContentHelper

* ByteArrayContentHelperTests
This commit is contained in:
Stef Heyenrath
2020-05-23 16:48:25 +02:00
committed by GitHub
parent d9e3f38fee
commit 1b1ddeab83
5 changed files with 80 additions and 5 deletions

View File

@@ -64,6 +64,7 @@ namespace WireMock.Owin.Mappers
ContentEncoding = contentEncodingHeader?.FirstOrDefault(),
DecompressGZipAndDeflate = !options.DisableRequestBodyDecompressing.GetValueOrDefault(false)
};
body = await BodyParser.Parse(bodyParserSettings);
}