New test.
[mono.git] / mcs / class / System.Web / Test / TestMonoWeb / SyncHandler.cs
1 using System;
2 using System.Web;
3
4 namespace TestMonoWeb
5 {
6         public class SyncHandler : IHttpHandler {
7                 
8                 public void ProcessRequest(HttpContext context) {
9                         context.Response.Write("SyncHandler.ProcessRequest<br>\n");
10                 }
11                 
12                 public bool IsReusable {
13                         get { return false; }  
14                 }
15         }
16 }