aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Services/IHasRequestFilter.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-04-22 13:16:08 +0200
committerGitHub <noreply@github.com>2020-04-22 13:16:08 +0200
commit07326c1d9b1a74b6802cd4187104c4272d59e28e (patch)
tree1061f46729d67671eeb9b6bd71320732e83ccef9 /MediaBrowser.Model/Services/IHasRequestFilter.cs
parentdaed41815f23795aad7f54965a8ef7eae44a1e08 (diff)
parenta85b1dcba663fe3bbb2441380cd8da382c92f2bd (diff)
Merge branch 'master' into fix-auth-response-codes
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);
}
}