diff --git a/Settings.md b/Settings.md index 94d53fe..9653b05 100644 --- a/Settings.md +++ b/Settings.md @@ -1,4 +1,4 @@ -# FluentMockServerSettings +# WireMockServerSettings The interface [IWireMockServerSettings.cs](https://github.com/WireMock-Net/WireMock.Net/blob/master/src/WireMock.Net/Settings/IWireMockServerSettings.cs) defines the configuration from the WireMock.Net server. ### Port @@ -95,6 +95,9 @@ The RequestLog expiration in hours (optional). ### MaxRequestLogCount The MaxRequestLog count (optional). +### DisableJsonBodyParsing +Set to true to disable Json deserialization when processing requests. (default set to false). + ### PreWireMockMiddlewareInit Action which is called (with the IAppBuilder or IApplicationBuilder) before the internal WireMockMiddleware is initialized. [Optional] @@ -110,7 +113,6 @@ But also a Null logger is available [WireMockNullLogger.cs](https://github.com/W And you can implement your own logger, like [WireMockLog4NetLogger.cs](https://github.com/WireMock-Net/WireMock.Net/blob/master/examples/WireMock.Net.Service/WireMockLog4NetLogger.cs). - ### FileSystemHandler Handler to interact with the file system to read and write static mapping files.