//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
* Asynchronous Http request handler interface
*
* Copyright (c) 2000 Microsoft Corporation
*/
namespace System.Web {
using System.Security.Permissions;
///
/// When implemented by a class, defines the contract that Http Async Handler objects must
/// implement.
///
public interface IHttpAsyncHandler : IHttpHandler {
///
/// Registers handler for async notification.
///
IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData);
///
/// [To be supplied.]
///
void EndProcessRequest(IAsyncResult result);
}
}