This is the method that ASP.NET will use to allow the handler to handle a request. Essentially all handler work begins with this method.
[Visual Basic]
Public Overridable MustOverride Sub ProcessRequest( _
ByVal context As HttpContext _
)
[C#]
public virtual abstract void ProcessRequest(
HttpContext context
);
ArHandlerBase Class | ArHandlerBase Members
Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.