From 67b1197098335a0efa8dfceca4c4a86cd35a6cb5 Mon Sep 17 00:00:00 2001 From: Ahmed Yahia Date: Mon, 29 Oct 2018 14:35:54 +0200 Subject: [PATCH] Update url-rewriting.md (#9290) --- aspnetcore/fundamentals/url-rewriting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/url-rewriting.md b/aspnetcore/fundamentals/url-rewriting.md index 3cf3f4f3b5..1d304714d2 100644 --- a/aspnetcore/fundamentals/url-rewriting.md +++ b/aspnetcore/fundamentals/url-rewriting.md @@ -395,7 +395,7 @@ The middleware supports the following IIS URL Rewrite Module server variables: Use `Add(Action applyRule)` to implement your own rule logic in a method. The `RewriteContext` exposes the `HttpContext` for use in your method. The `RewriteContext.Result` determines how additional pipeline processing is handled. -| context.Result | Action | +| `RewriteContext.Result` | Action | | ------------------------------------ | --------------------------------------------------------------- | | `RuleResult.ContinueRules` (default) | Continue applying rules | | `RuleResult.EndResponse` | Stop applying rules and send the response |