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

QueryBuilderApiControllerBase Class

A base class for the controller that processes HTTP requests from the Query Builder.

Namespace: DevExpress.Web.Mvc.Controllers

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

Declaration

public abstract class QueryBuilderApiControllerBase :
    Controller

Remarks

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

using DevExpress.Web.Mvc.Controllers;
// ...
    public class QueryBuilderController : QueryBuilderApiControllerBase {
    }

Review the following help topics for examples:

Inheritance

Object
ControllerBase
Controller
QueryBuilderApiControllerBase
See Also