Updated Settings (markdown)

Stef Heyenrath
2020-03-05 17:59:10 +01:00
parent 702767823c
commit b143b5eb09

@@ -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.