From 37fb4e0a8ddcef6e9829b8093e624ad12beb8e94 Mon Sep 17 00:00:00 2001 From: Sivanantham Padikkasu Date: Tue, 2 May 2017 10:06:55 +0530 Subject: [PATCH] Changed the "LogOff" action name into "LogOut" (#3293) Changed the "LogOff" action name into "LogOut".Changed the "LogOff" action name into "LogOut".By default ASP Net core provides Logoff action in "LogOut" ActionResult Only.Also raised PR for changed the action name in account controller . --- aspnetcore/security/authentication/identity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/security/authentication/identity.md b/aspnetcore/security/authentication/identity.md index 5a8d5d16cb..7a8848429e 100644 --- a/aspnetcore/security/authentication/identity.md +++ b/aspnetcore/security/authentication/identity.md @@ -77,7 +77,7 @@ In this topic, you'll learn how to use ASP.NET Core Identity to add functionalit 4. Log off. - Clicking the **Log off** link calls the `LogOff` action in the account controller. + Clicking the **Log off** link calls the `LogOut` action in the account controller. [!code-csharp[Main](identity/sample/src/ASPNET-IdentityDemo/Controllers/AccountController.cs?highlight=5&range=131-138)]