Files
WireMock.Net-wiremock/src/WireMock.Net/Util/BodyParserSettings.cs
Stef Heyenrath 78b94d2ebc Add WithBody with IDictionary (form-urlencoded values) (#903)
* .

* x

* fx

* fix

* f

* tests

* fix tests

* add tst
2023-03-17 17:08:45 +01:00

18 lines
426 B
C#

using System.IO;
namespace WireMock.Util;
internal class BodyParserSettings
{
public Stream Stream { get; set; } = null!;
public string? ContentType { get; set; }
public string? ContentEncoding { get; set; }
public bool DecompressGZipAndDeflate { get; set; } = true;
public bool DeserializeJson { get; set; } = true;
public bool DeserializeFormUrlEncoded { get; set; } = true;
}