diff options
| author | crobibero <cody@robibe.ro> | 2020-06-04 15:16:04 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-06-04 15:16:04 -0600 |
| commit | a787efc66027b678cb09e83002ce3f9ba00e206d (patch) | |
| tree | cc460c9a764461158c548eb72332d82d3c1d7280 /MediaBrowser.Model/Services/IHasRequestFilter.cs | |
| parent | 341b947cdecdfc791c1bc3e72da1e68cd3754c3a (diff) | |
| parent | 601e4a88c94ea0ccaab9f3c148d4bbdca2e532ee (diff) | |
Merge remote-tracking branch 'upstream/api-migration' into api-scheduled-tasks
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); } } |
