| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using WireMock.Logging; |
| | | 4 | | using WireMock.Matchers; |
| | | 5 | | |
| | | 6 | | namespace WireMock.Owin |
| | | 7 | | { |
| | | 8 | | internal class WireMockMiddlewareOptions |
| | | 9 | | { |
| | 15 | 10 | | public TimeSpan? RequestProcessingDelay { get; set; } |
| | | 11 | | |
| | 0 | 12 | | public IMatcher AuthorizationMatcher { get; set; } |
| | | 13 | | |
| | 13 | 14 | | public bool AllowPartialMapping { get; set; } |
| | | 15 | | |
| | 117 | 16 | | public IList<Mapping> Mappings { get; set; } |
| | | 17 | | |
| | 54 | 18 | | public IList<LogEntry> LogEntries { get; set; } |
| | | 19 | | |
| | 18 | 20 | | public WireMockMiddlewareOptions() |
| | 18 | 21 | | { |
| | 18 | 22 | | Mappings = new List<Mapping>(); |
| | 18 | 23 | | LogEntries = new List<LogEntry>(); |
| | 18 | 24 | | } |
| | | 25 | | } |
| | | 26 | | } |