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.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
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
Example
<system.web>
...
<httpHandlers>
<add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v24.1, Version=24.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" verb="GET"
path="DX.ashx" validate="false" />
</httpHandlers>
<httpModules>
<add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v24.1, Version=24.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" name="ASPxHttpHandlerModule"/>
</httpModules>
...
</system.web>