:在Global中注册为全局过滤器,应用于所有的Controller的Action
参数类均继承自ControllerContext,主要包含属性请求上下文、路由数据、结果

using FilterExam.Fiter;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace FilterExam.Controllers
{
    public class HomeController : Controller
    {
        //[MyAuthorization]//第一种方式
        // GET: Home
        public ActionResult Index()
        {