ASP .Net MVC 애플리케이션에서는 필터를 세 가지 수준으로 적용할 수 있습니다.
액션 메서드 수준에 적용된 필터는 해당 수준에만 적용됩니다. 행동 방법.
using System.Web.Mvc; namespace DemoMvcApplication.Controllers{ public class HomeController : Controller{ [Authorize] //Action Method Level public string Index(){ return "Index Invoked"; } } }
컨트롤러 레벨 필터는 모든 액션 메소드에 적용됩니다. 다음 필터는 HomeController의 모든 작업 방법에 적용되지만 다른 작업 방법에는 적용되지 않습니다. 제어 장치.
using System.Web.Mvc; namespace DemoMvcApplication.Controllers{ [Authorize] //Controller Level public class HomeController : Controller{ public string Index1(){ return "Index1 Invoked"; } public string Index2(){ return "Index2 Invoked"; } } }
글로벌 수준 필터는 global.asax.cs의 Application_Start 이벤트에서 제공됩니다. 기본 FilterConfig.RegisterGlobalFilters() 메서드를 사용하여 파일을 만듭니다. 글로벌 필터 애플리케이션의 모든 컨트롤러와 액션 메소드에 적용됩니다.
rreee위 내용은 ASP .Net MVC C#에서는 어떤 수준에서 필터를 적용할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!