Created
November 6, 2017 04:23
-
-
Save b-tiwari/7d0586a7f9e65600a59197771bc83b48 to your computer and use it in GitHub Desktop.
Claims based identity in MVC (HomeController.cs)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.Mvc; | |
| using csWinAuthWClaims.Attributes; | |
| namespace csWinAuthWClaims.Controllers | |
| { | |
| [AppClaimsAuthorize(ClaimType="myAppUserRole", ClaimValue="myAppAdmin")] | |
| public class HomeController : Controller | |
| { | |
| public ActionResult Index() | |
| { | |
| return View(); | |
| } | |
| public ActionResult About() | |
| { | |
| ViewBag.Message = "Your application description page."; | |
| return View(); | |
| } | |
| public ActionResult Contact() | |
| { | |
| ViewBag.Message = "Your contact page."; | |
| return View(); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment