SyncHandler.cs 304 B

12345678910111213141516
  1. using System;
  2. using System.Web;
  3. namespace TestMonoWeb
  4. {
  5. public class SyncHandler : IHttpHandler {
  6. public void ProcessRequest(HttpContext context) {
  7. context.Response.Write("SyncHandler.ProcessRequest<br>\n");
  8. }
  9. public bool IsReusable {
  10. get { return false; }
  11. }
  12. }
  13. }