aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Services/IHasRequestFilter.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-04-21 15:12:04 -0600
committercrobibero <cody@robibe.ro>2020-04-21 15:12:04 -0600
commit14c94b4e5f6fd7e9ed3483bc2d582f68f8a21c67 (patch)
treef5082cbda8d5f207bd00cf06f4f4e32f05c127e9 /MediaBrowser.Model/Services/IHasRequestFilter.cs
parentfff2a40ffc4e5010b26143185c68d221225c1a22 (diff)
parenta2f19eadf739297cbbc99c9082b0175e8b881054 (diff)
Merge branch 'api-migration' of https://github.com/jellyfin/jellyfin into redoc
Diffstat (limited to 'MediaBrowser.Model/Services/IHasRequestFilter.cs')
-rw-r--r--MediaBrowser.Model/Services/IHasRequestFilter.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/MediaBrowser.Model/Services/IHasRequestFilter.cs b/MediaBrowser.Model/Services/IHasRequestFilter.cs
index 3d2e9c0dc..3e49e9872 100644
--- a/MediaBrowser.Model/Services/IHasRequestFilter.cs
+++ b/MediaBrowser.Model/Services/IHasRequestFilter.cs
@@ -8,17 +8,17 @@ namespace MediaBrowser.Model.Services
{
/// <summary>
/// Order in which Request Filters are executed.
- /// &lt;0 Executed before global request filters
- /// &gt;0 Executed after global request filters
+ /// &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>
+ /// <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);
}
}