Skip to main content
Tab

ASPxHttpHandlerModule Class

Represents a specific HTTP handler module, which allows correct server-side processing of a callback request to be performed, and a proper response to be generated.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class ASPxHttpHandlerModule :
    IHttpModule,
    IHttpHandler

Remarks

The ASPxHttpHandlerModule is a class that implements the IHttpHandler and IHttpModule interfaces, and so realizes HTTP module and handler functionality (see the Introduction to HTTP Modules and the Introduction to HTTP Handlers topics, to learn more). To supplement the application’s functionality with its capabilities, the ASPxHttpHandlerModule should be registered within a web application’s Web.config file.

Use the ASPxHttpHandlerModule topic for more detailed information about the DevExpress HttpHandler Module and its features.

Concept

ASPxHttpHandlerModule

Example

<system.web>
     ...
    <httpHandlers>
      <add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v23.2, Version=23.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" verb="GET"
      path="DX.ashx" validate="false" />
    </httpHandlers>
    <httpModules>
      <add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v23.2, Version=23.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" name="ASPxHttpHandlerModule"/>
    </httpModules>
    ...
</system.web>

Inheritance

Object
ASPxHttpHandlerModule
See Also