From 48facb797ed912e4ea6b04b17d1ff190ac2daac4 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 12 Sep 2018 19:26:21 +0200 Subject: Update to 3.5.2 and .net core 2.1 --- MediaBrowser.Model/Services/IHasRequestFilter.cs | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 MediaBrowser.Model/Services/IHasRequestFilter.cs (limited to 'MediaBrowser.Model/Services/IHasRequestFilter.cs') diff --git a/MediaBrowser.Model/Services/IHasRequestFilter.cs b/MediaBrowser.Model/Services/IHasRequestFilter.cs deleted file mode 100644 index 2164179d5..000000000 --- a/MediaBrowser.Model/Services/IHasRequestFilter.cs +++ /dev/null @@ -1,21 +0,0 @@ - -namespace MediaBrowser.Model.Services -{ - public interface IHasRequestFilter - { - /// - /// Order in which Request Filters are executed. - /// <0 Executed before global request filters - /// >0 Executed after global request filters - /// - int Priority { get; } - - /// - /// The request filter is executed before the service. - /// - /// The http request wrapper - /// The http response wrapper - /// The request DTO - void RequestFilter(IRequest req, IResponse res, object requestDto); - } -} -- cgit v1.2.3