1-Authentication filter
The authentication filter runs before any other filter or action method. The authentication confirms that if you are a valid or invalid user. Action filters implement the IAuthenticationFilter interface.
인증 필터는 다른 필터 또는 작업 메서드보다 먼저 실행됩니다. 인증은 사용자가 유효한지 또는 유효하지 않은지 확인합니다. 작업 필터는 IAuthenticationFilter 인터페이스를 구현합니다.
2-Authorization filter
The Authorization Filters are responsible for checking User Access. These implement the IAuthorizationFilterinterface in the framework.
권한 부여 필터 권한 부여 필터는 사용자 액세스를 확인하는 역할을 합니다. 이들은 프레임워크에서 IAuthorizationFilter인터페이스를 구현합니다
3-Action filter
There is an action filter are attribute that you can apply to a controller action or an entire controller. This filter will call on before and after the action starts executing and after the action has executed.
액션 필터 컨트롤러 작업 또는 전체 컨트롤러에 적용할 수 있는 속성인 작업 필터가 있습니다. 이 필터는 작업 실행이 시작되기 전과 후, 작업이 실행된 후에 호출됩니다.
4-Result filter
The filter contains in logic that is executed before and after a view result is executed. If you want to modify a view result and right before the view is rendered to the browser.
결과 필터 필터는 뷰 결과가 실행되기 전과 후에 실행되는 논리에 포함됩니다. 뷰 결과를 수정하려는 경우 뷰가 브라우저에 렌더링되기 직전입니다.
5-Exception filter
This filter can be used as an exception filter to handle errors raised by either your controller actions or controller action results
5-예외 필터 이 필터는 컨트롤러 작업 또는 컨트롤러 작업 결과에서 발생한 오류를 처리하기 위한 예외 필터로 사용할 수 있습니다