aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Services/IHasRequestFilter.cs
blob: b83d3b07567be259839d3962b9dfc14dc65487bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma warning disable CS1591

using Microsoft.AspNetCore.Http;

namespace MediaBrowser.Model.Services
{
    public interface IHasRequestFilter
    {
        /// <summary>
        /// Gets the order in which Request Filters are executed.
        /// &lt;0 Executed before global request filters.
        /// &gt;0 Executed after global request filters.
        /// </summary>
        int Priority { get; }

        /// <summary>
        /// The request filter is executed before the service.
        /// </summary>
        /// <param name="req">The http request wrapper.</param>
        /// <param name="res">The http response wrapper.</param>
        /// <param name="requestDto">The request DTO.</param>
        void RequestFilter(IRequest req, HttpResponse res, object requestDto);
    }
}