From 9e5ea0d6518240e3d0319bb5a5fe35362bb9cefd Mon Sep 17 00:00:00 2001 From: nader karayanni <59873152+karayanni@users.noreply.github.com> Date: Tue, 15 Feb 2022 11:39:23 +0200 Subject: [PATCH] Exception Filter exception propagation (#25015) Co-authored-by: Kirk Larkin <6025110+serpent5@users.noreply.github.com> --- aspnetcore/mvc/controllers/filters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/mvc/controllers/filters.md b/aspnetcore/mvc/controllers/filters.md index 36c8aed720..37b70689a9 100644 --- a/aspnetcore/mvc/controllers/filters.md +++ b/aspnetcore/mvc/controllers/filters.md @@ -1001,7 +1001,7 @@ Exception filters: * Handle unhandled exceptions that occur in Razor Page or controller creation, [model binding](xref:mvc/models/model-binding), action filters, or action methods. * Do **not** catch exceptions that occur in resource filters, result filters, or MVC result execution. -To handle an exception, set the property to `true` or write a response. This stops propagation of the exception. An exception filter can't turn an exception into a "success". Only an action filter can do that. +To handle an exception, set the property to `true` or assign the property. This stops propagation of the exception. An exception filter can't turn an exception into a "success". Only an action filter can do that. Exception filters: