using System; using System.Collections.Concurrent; using System.Collections.ObjectModel; using WireMock.Handlers; using WireMock.Logging; using WireMock.Matchers; #if !USE_ASPNETCORE using Owin; #else using IAppBuilder = Microsoft.AspNetCore.Builder.IApplicationBuilder; #endif namespace WireMock.Owin { internal interface IWireMockMiddlewareOptions { IWireMockLogger Logger { get; set; } TimeSpan? RequestProcessingDelay { get; set; } IStringMatcher AuthorizationMatcher { get; set; } bool AllowPartialMapping { get; set; } ConcurrentDictionary Mappings { get; } ConcurrentDictionary Scenarios { get; } ObservableCollection LogEntries { get; } int? RequestLogExpirationDuration { get; set; } int? MaxRequestLogCount { get; set; } Action PreWireMockMiddlewareInit { get; set; } Action PostWireMockMiddlewareInit { get; set; } IFileSystemHandler FileSystemHandler { get; set; } } }