Skip to main content
A newer version of this page is available. .

WebDocumentViewerApiControllerBase Class

The base class for a controller that processes HTTP requests from the Web Document Viewer.

Namespace: DevExpress.Web.Mvc.Controllers

Assembly: DevExpress.Web.Mvc5.v18.2.dll

Declaration

public abstract class WebDocumentViewerApiControllerBase :
    Controller

Remarks

If you use the MVCxWebDocumentViewer or MVCxReportDesigner controls in an application configured to work with controllers instead of default HTTP handlers, you should explicitly implement the WebDocumentViewerApiControllerBase descendant:

using DevExpress.Web.Mvc.Controllers;
// ...
    public class WebDocumentViewerController : WebDocumentViewerApiControllerBase {
    }

Review the following help topics for examples:

Inheritance

Object
ControllerBase
Controller
WebDocumentViewerApiControllerBase
See Also