// // System.IHttpHandler.cs // // Author: // Bob Smith // // (C) Bob Smith // namespace System.Web { public interface IHttpHandler { bool IsReusable {get;} void ProcessRequest(HttpContext context); } }