**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Web / Test / TestMonoWeb / SyncHandler.cs
blob7dd01bb65abd0da1338ac20eedaf532b7847281b
1 using System;
2 using System.Web;
4 namespace TestMonoWeb
6 public class SyncHandler : IHttpHandler {
8 public void ProcessRequest(HttpContext context) {
9 context.Response.Write("SyncHandler.ProcessRequest<br>\n");
12 public bool IsReusable {
13 get { return false; }