Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

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.3
Syntax
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.Boolean

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.AspNetCore.Http.HttpContext 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.

Extension Methods