diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-23 18:54:13 -0400 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-23 19:32:40 -0400 |
| commit | cd989381908203e02139d403955cf70c0c818dd8 (patch) | |
| tree | 890d927f09eb310100b1c6f9ad52ddf921271f8a /MediaBrowser.Model/Services/IHasRequestFilter.cs | |
| parent | 24ed6397250df484b71ebfb3b428d31e4d05f510 (diff) | |
| parent | aa6d52277dfbc074016d7623f114325a5edc3cbe (diff) | |
Merge remote-tracking branch 'upstream/master' into integration-tests
Diffstat (limited to 'MediaBrowser.Model/Services/IHasRequestFilter.cs')
| -rw-r--r-- | MediaBrowser.Model/Services/IHasRequestFilter.cs | 10 |
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. - /// <0 Executed before global request filters - /// >0 Executed after global request filters + /// <0 Executed before global request filters. + /// >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); } } |
