using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace BZ.Web.QiYe.Handler
{
    /// <summary>
    /// Handler1 的摘要说明
    /// </summary>
    public class Handler1 : IHttpHandler
    {

        private delegate void task(); //定义任务委托

        public void ProcessRequest(HttpContext context)
        {
            context.Response.Clear();
            //委托事件
            //任务数组
            task[] tasks =
            {
                // Method();存放方法名

            };
            string sAction = (string)context.Request["action"];

            foreach (task item in tasks)
            {
                if (item.Method.Name.Equals(sAction))
                {
                    item.Invoke();
                    break;
                }
            }
        }
        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}

  

posted on 2014-07-18 17:43  banyan.rong  阅读(138)  评论(0编辑  收藏  举报