AuthorizeAttribute顯示出來很好,但對於我的生活,我無法弄清楚AllowAnonymousAttribute類的位置。MVC的AllowAnonymousAttribute沒有出現
每當我將它添加到代碼,我得到編譯器錯誤。
[Authorize] //works fine
public ActionResult DoSomething(){
...
}
[AllowAnonymous] //COMPILER ERROR type not found. Red squigglies. Bad.
public ActionResult Foo() {
...
}
我在一個MVC3項目。
AllowAnonymous - 這是一個自定義屬性?... – 2012-02-20 15:19:51
@EvgeniyLabunskiy不,它是一個MVC4屬性。 – 2013-05-07 12:04:00
@Husein我很驚訝,導致標題的主題是asp.net-mvc-3 – 2013-05-07 12:27:57