#if NETFX

using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;

namespace Apewer.Web
{

    internal class UniversalHandler : System.Web.IHttpHandler
    {

        public bool IsReusable { get { return false; } }

        public void ProcessRequest(System.Web.HttpContext context)
        {
        }

    }

}

#endif