aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Services/IHasRequestFilter.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-06-13 15:09:02 -0600
committercrobibero <cody@robibe.ro>2020-06-13 15:09:02 -0600
commit6c7cc92a092eb9de044aad26b5e989aea0012869 (patch)
treed80c5c0b4395a9d2cafd92f8741cc6d3d9d651f9 /MediaBrowser.Model/Services/IHasRequestFilter.cs
parentfb068b76a12bf9de5de75a0b8079effcd0336ecf (diff)
parent0011e8df47380936742302ef40639a4626a780ed (diff)
Merge remote-tracking branch 'upstream/api-migration' into api-image2
Diffstat (limited to 'MediaBrowser.Model/Services/IHasRequestFilter.cs')
-rw-r--r--MediaBrowser.Model/Services/IHasRequestFilter.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/MediaBrowser.Model/Services/IHasRequestFilter.cs b/MediaBrowser.Model/Services/IHasRequestFilter.cs
index 3d2e9c0dcf..b83d3b0756 100644
--- a/MediaBrowser.Model/Services/IHasRequestFilter.cs
+++ b/MediaBrowser.Model/Services/IHasRequestFilter.cs
@@ -7,18 +7,18 @@ namespace MediaBrowser.Model.Services
public interface IHasRequestFilter
{
/// <summary>
- /// Order in which Request Filters are executed.
- /// &lt;0 Executed before global request filters
- /// &gt;0 Executed after global request filters
+ /// 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>
+ /// <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);
}
}