Files
WireMock.Net-wiremock/src/WireMock.Net/Owin/WireMockMiddlewareOptions.cs

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>();
}
}
}