Request Object

Hierarchy

  • RequestWrapper

Constructors

Properties

attributes: Map<any, any>

Map of Request attributes.

Example

Here's some example code to add Request attribute:

var requestObj = voltMX.getRequestObject();
requestObj.attributes['Attr1']='A1Val';
requestObj.update();
inputParams: Map<any, any>

Map of Request input params.

Example

Here's some example code to add Request input param:

var requestObj = voltMX.getRequestObject();
requestObj.inputParams['Param1']='P1Val';
requestObj.update();

Methods

  • Get Map of Request Attributes

    Returns Map<any, any>

  • Get Map of Request Input Parameters

    Returns Map<any, any>

  • Get Request Query String

    Returns string

  • Get Remote Address of Request

    Returns string

  • Get Map of Request Parameters

    Returns Map<any, any>

  • Update Request.

    Example

    Here's some example code to Update Request:

    var requestObj = voltMX.getRequestObject();
    requestObj.attributes['Attr1']='A1Val';
    requestObj.update();

    Returns void

Generated using TypeDoc