mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-18 07:13:46 +01:00
30 lines
754 B
C#
30 lines
754 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WireMock.Logging;
|
|
using WireMock.Matchers;
|
|
|
|
namespace WireMock.Owin
|
|
{
|
|
internal class WireMockMiddlewareOptions
|
|
{
|
|
public TimeSpan? RequestProcessingDelay { get; set; }
|
|
|
|
public IMatcher AuthorizationMatcher { get; set; }
|
|
|
|
public bool AllowPartialMapping { get; set; }
|
|
|
|
public IList<Mapping> Mappings { get; set; }
|
|
|
|
public IList<LogEntry> LogEntries { get; set; }
|
|
|
|
public int? RequestLogExpirationDuration { get; set; }
|
|
|
|
public int? MaxRequestLogCount { get; set; }
|
|
|
|
public WireMockMiddlewareOptions()
|
|
{
|
|
Mappings = new List<Mapping>();
|
|
LogEntries = new List<LogEntry>();
|
|
}
|
|
}
|
|
} |