Interface IHttpHandler
Port of System.Web.IHttpHandler to support HttpHandler in .net core.
Namespace: System.Web
Assembly: EPiServer.Cms.AspNetCore.Templating.dll
Version: 12.0.3Syntax
public interface IHttpHandler
Properties
IsReuable
Gets a value indicating whether another request can use the System.Web.IHttpHandler instance.
Declaration
bool IsReuable { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
ProcessRequest(HttpContext)
Enables processing of HTTP Web requests by a custom HttpHandler that implements the System.Web.IHttpHandler interface.
Declaration
void ProcessRequest(HttpContext context)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
context | An System.Web.HttpContext object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests. |