Windows Identity Framework on ASP.NET MVC - how to authorize user per action basis?
Like:
[Authorize]
public ActionResult About()
{
return View();
}
Instead of the whole site level security as is the default WIF site integration behaviour?
UPDATE: Maybe should the question goes like, how to allow anonymous users to access the site too?