mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-22 10:17:49 +01:00
18 lines
426 B
C#
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;
|
|
} |