diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-20 20:11:33 -0400 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-20 20:11:33 -0400 |
| commit | f81505969877a9f15794eabd98f0fc8e54ddb17d (patch) | |
| tree | 901390bd1867037fc2a799a1fd63b2986937844e /MediaBrowser.Model/Services/IHasRequestFilter.cs | |
| parent | ecf49caf0d1392b0f2aa83bce1d08a006463566d (diff) | |
| parent | 07143bcb68f010c59274bbe8e7c0e03a843e916b (diff) | |
Merge remote-tracking branch 'upstream/master' into register-services-correctly
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); } } |
