Fix typo in filters.md (#3426)

`ReesultFilterAttribute` -> `ResultFilterAttribute`
pull/3427/head
andrewlock 2017-05-28 16:30:02 +01:00 committed by Steve Smith
parent 21efed8220
commit 56cb9c634f
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ When the `OnResultExecuted` method runs, the response has likely been sent to th
For an `IAsyncResultFilter` a call to `await next()` on the `ResultExecutionDelegate` executes any subsequent result filters and the action result. To short-circuit, set `ResultExecutingContext.Cancel` to true and do not call the `ResultExectionDelegate`.
The framework provides an abstract `ReesultFilterAttribute` that you can subclass. The [AddHeaderAttribute](#add-header-attribute) class shown earlier is an example of a result filter attribute.
The framework provides an abstract `ResultFilterAttribute` that you can subclass. The [AddHeaderAttribute](#add-header-attribute) class shown earlier is an example of a result filter attribute.
## Using middleware in the filter pipeline