//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
* Synchronous Http request handler interface
*
* Copyright (c) 1998 Microsoft Corporation
*/
namespace System.Web {
using System.Security.Permissions;
///
///
/// Defines the contract that developers must implement to
/// synchronously process HTTP web requests. Developers
/// implement the ProcessRequest method to provide custom URL execution.
///
///
public interface IHttpHandler {
///
///
/// Drives web processing execution.
///
///
void ProcessRequest(HttpContext context);
///
///
/// Allows an IHTTPHandler instance to indicate at the end of a
/// request whether it can be recycled and used for another request.
///
///
bool IsReusable { get; }
}
}