You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
362 B

  1. #if NETFX
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Reflection;
  5. using System.Text;
  6. namespace Apewer.Web
  7. {
  8. internal class UniversalHandler : System.Web.IHttpHandler
  9. {
  10. public bool IsReusable { get { return false; } }
  11. public void ProcessRequest(System.Web.HttpContext context)
  12. {
  13. }
  14. }
  15. }
  16. #endif