Back to Devexpress

ASPxHttpHandlerModule Class

aspnet-devexpress-dot-web-419d3482.md

latest2.7 KB
Original Source

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.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public class ASPxHttpHandlerModule :
    IHttpModule,
    IHttpHandler
vb
Public Class ASPxHttpHandlerModule
    Implements 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

xml

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

Implements

IHttpModule

IHttpHandler

Inheritance

Object ASPxHttpHandlerModule

See Also

ASPxHttpHandlerModule Members

DevExpress.Web Namespace