RouteParameters

AMD: require(["esri/rest/support/RouteParameters"], (RouteParameters) => { /* code goes here */ });
ESM: import RouteParameters from "@arcgis/core/rest/support/RouteParameters.js";
Class: esri/rest/support/RouteParameters
Inheritance: RouteParameters Accessor
Since: ArcGIS Maps SDK for JavaScript 4.20

Input parameters for route. Specifies details such as stop locations, barrier locations, the impedance attribute, etc.

See also

Constructors

RouteParameters

Constructor
new RouteParameters(properties)
Parameter
properties Object
optional

See the properties for a list of all the properties that may be passed into the constructor.

Property Overview

Any properties can be set, retrieved or listened to. See the Working with Properties topic.
Show inherited properties Hide inherited properties
Name Type Summary Class
String[]

Use this property to specify whether the operation should accumulate values other than the value specified for impedanceAttribute.

RouteParameters
String

An authorization string used to access a resource or service.

RouteParameters
AttributeParameterValue[]

Use this property to specify additional values required by an attribute or restriction, such as to specify whether the restriction prohibits, avoids, or prefers travel on restricted roads.

RouteParameters
String

The name of the class.

Accessor
String

The language that will be used when generating travel directions.

RouteParameters
String

Specify the units for displaying travel distance in the driving directions.

RouteParameters
String

Define the content and verbosity of the driving directions.

RouteParameters
String

Specify the name of the formatting style for the directions.

RouteParameters
String

Set the time-based impedance attribute to display the duration of a maneuver, such as "Go northwest on Alvorado St.

RouteParameters
Boolean

Use this property to specify whether the operation should reorder stops to find the optimized route.

RouteParameters
Number

Use this property to specify the number of decimal places in the response geometries returned by solve operation.

RouteParameters
Number

Use this property to specify the number of decimal places in the response geometries returned by solve operation.

RouteParameters
Number

Use this property to specify the number of decimal places in the response geometries returned by a solve operation.

RouteParameters
Boolean

Specify whether invalid input locations should be ignored when finding the best solution.

RouteParameters
String

Specifies the impedance.

RouteParameters
Number

Use this property to specify by how much you want to simplify the route geometry returned by the operation.

RouteParameters
String

Use this property to specify the units for the value specified for the outputGeometryPrecision parameter.

RouteParameters
String

Use this property to specify the type of route features that are output by the operation.

RouteParameters
SpatialReference

Use this property to specify the spatial reference of the geometries, such as line or point features, returned by a solve operation.

RouteParameters
Object

Specify additional settings that can influence the behavior of the solver when finding solutions for the network analysis problems.

RouteParameters
Collection<PointBarrier>|DataLayer|FeatureSet|NetworkFeatureSet|NetworkUrl

Use this property to specify one or more points that will act as temporary restrictions or represent additional time or distance that may be required to travel on the underlying streets.

RouteParameters
Collection<PolygonBarrier>|DataLayer|FeatureSet|NetworkFeatureSet|NetworkUrl

Use this property to specify polygons that either completely restrict travel or proportionately scale the time or distance required to travel on the streets intersected by the polygons.

RouteParameters
Collection<PolylineBarrier>|DataLayer|FeatureSet|NetworkFeatureSet|NetworkUrl

Use this property to specify one or more lines that prohibit travel anywhere the lines intersect the streets.

RouteParameters
Boolean

Use this property to indicate whether the operation should keep the first stop fixed when reordering the stops.

RouteParameters
Boolean

Use this property to indicate whether the operation should keep the last stop fixed when reordering the stops.

RouteParameters
Boolean

Use this property to specify if the Object IDs specified for input locations such as stops or barriers should be preserved when the input locations are returned as output.

RouteParameters
String[]

Use this property to specify which restrictions should be honored by the operation.

RouteParameters
String

Use this property to restrict or permit the route from making U-turns at junctions.

RouteParameters
Boolean

Specify whether point barriers will be returned by the routing operation.

RouteParameters
Boolean

Specify whether the operation should generate driving directions for each route.

RouteParameters
Boolean

Specify whether polygon barriers will be returned by the routing operation.

RouteParameters
Boolean

Specify whether polyline barriers will be returned by the routing operation.

RouteParameters
Boolean

Use this property to specify if the operation should return routes.

RouteParameters
Boolean

Use this property to specify whether stops will be returned by the routing operation.

RouteParameters
Boolean

Specify whether traversed edges will be returned by the operation.

RouteParameters
Boolean

Specify whether traversed junctions will be returned by the operation.

RouteParameters
Boolean

Specify whether traversed turns will be returned by the operation.

RouteParameters
Boolean

Include z values for the returned geometries if supported by the underlying network.

RouteParameters
Date|String

Indicates the time that travel should begin.

RouteParameters
Boolean

Specify the time zone or zones of the startTime property.

RouteParameters
Collection<Stop>|DataLayer|FeatureSet|NetworkFeatureSet|NetworkUrl

Specifies the locations the output route or routes will visit.

RouteParameters
Boolean

Specify whether the timeWindowStart and timeWindowEnd property values on stops are specified in UTC or geographically local time.

RouteParameters
TravelMode

A travel mode represents a means of transportation, such as driving or walking.

RouteParameters
Boolean

Specify whether hierarchy should be used when finding the shortest paths.

RouteParameters
Boolean

Use this property to indicate whether the operation should consider time windows specified on the stops when finding the best route.

RouteParameters

Property Details

accumulateAttributes

Property
accumulateAttributes String[]

Use this property to specify whether the operation should accumulate values other than the value specified for impedanceAttribute. For example, if your impedanceAttribute is set to TravelTime, the total travel time for the route will be calculated by the operation. However, if you also want to calculate the total distance of the route in miles, you can specify Miles as the value for the accumulateAttributes property.

Possible Values:"kilometers"|"miles"|"minutes"|"travel-time"|"truck-minutes"|"truck-travel-time"|"walk-time"|"string"

apiKey

Property
apiKey String

An authorization string used to access a resource or service. API keys are generated and managed in the ArcGIS Developer dashboard. An API key is tied explicitly to an ArcGIS account; it is also used to monitor service usage. Setting a fine-grained API key on a specific class overrides the global API key.

Example
const stops = new FeatureSet({
  features: [
    new Graphic({
      geometry: new Point({
        x: -117.1949676,
        y: 34.0571844
      })
    }),
    new Graphic({
      geometry: new Point({
        x: -117.0619917,
        y: 34.0010284
      })
    })
  ]
});

const routeParameters = new RouteParameters({
  apiKey: "YOUR_API_KEY",
  stops
});

const routeURL = "https://route-api.arcgis.com/arcgis/rest/services/World/Route/NAServer/Route_World";

const routeContainer = await route.solve(routeURL, routeParameters);
const routeLayer = routeContainer.routeResults[0].route;

const { attributes, geometry } = routeLayer;
view.graphics.add(new Graphic({
  attributes,
  geometry,
  symbol: {
    type: "simple-line",
    color: "green",
    width: "8px"
  }
}));

attributeParameterValues

Property
attributeParameterValues AttributeParameterValue[]

Use this property to specify additional values required by an attribute or restriction, such as to specify whether the restriction prohibits, avoids, or prefers travel on restricted roads. If the restriction is meant to avoid or prefer roads, you can further specify the degree to which they are avoided or preferred using this property. For example, you can choose to never use toll roads, avoid them as much as possible, or prefer them.

declaredClass

Inherited
Property
declaredClass Stringreadonly
Inherited from Accessor

The name of the class. The declared class name is formatted as esri.folder.className.

directionsLanguage

Property
directionsLanguage String

The language that will be used when generating travel directions. This parameter applies only when the returnDirections parameter is set to true. The service supports generating directions in the following languages: ar, bg, bs, ca, cs, da, de, el, en, es, et, fi, fr, he, hr, hu, id, it, ja, ko, lt, lv, nb, nl, pl, pt-BR, pt-PT, ro, ru, sk, sl, sr, sv, th, tr, uk, vi, zh-CN, zh-HK and zh-TW.

directionsLengthUnits

Property
directionsLengthUnits String

Specify the units for displaying travel distance in the driving directions. This property applies only when the returnDirections property is set to true.

Possible Values:"centimeters"|"decimal-degrees"|"decimeters"|"feet"|"inches"|"kilometers"|"meters"|"miles"|"millimeters"|"nautical-miles"|"points"|"yards"

directionsOutputType

Property
directionsOutputType String

Define the content and verbosity of the driving directions. This property applies only when the returnDirections property is set to true.

Possible Values:"complete"|"complete-no-events"|"featuresets"|"instructions-only"|"standard"|"summary-only"

directionsStyleName

Property
directionsStyleName String

Specify the name of the formatting style for the directions. This property applies only when the returnDirections property is set to true.

Possible Values:"desktop"|"navigation"|"campus"

directionsTimeAttribute

Property
directionsTimeAttribute String

Set the time-based impedance attribute to display the duration of a maneuver, such as "Go northwest on Alvorado St. for 5 minutes." The units for all the time attributes is minutes.

Possible Values:"travel-time"|"truck-travel-time"|"walk-time"|"minutes"|"truck-time"

findBestSequence

Property
findBestSequence Boolean

Use this property to specify whether the operation should reorder stops to find the optimized route. If the property value is false, the operation returns a route that visits stops in the order you define. If the parameter value is true, the operation finds the best order to visit the stops. The operation will account for a variety of variables so that the total travel distance or travel time for the route is minimized. You can elect to preserve the origin and the destination stops while allowing the operation to reorder intermediary stops by setting the preserveFirstStop and preserveLastStop properties.

See also

geometryPrecision

Property
geometryPrecision Number
Since: ArcGIS Maps SDK for JavaScript 4.24 RouteParameters since 4.20, geometryPrecision added at 4.24.

Use this property to specify the number of decimal places in the response geometries returned by solve operation. This applies to x- and y-values only (not m- or z-values).

geometryPrecisionM

Property
geometryPrecisionM Number
Since: ArcGIS Maps SDK for JavaScript 4.24 RouteParameters since 4.20, geometryPrecisionM added at 4.24.

Use this property to specify the number of decimal places in the response geometries returned by solve operation. This applies to m-value only (not x-,y- or z-values).

geometryPrecisionZ

Property
geometryPrecisionZ Number
Since: ArcGIS Maps SDK for JavaScript 4.24 RouteParameters since 4.20, geometryPrecisionZ added at 4.24.

Use this property to specify the number of decimal places in the response geometries returned by a solve operation. This applies to z-value only (not x-,y- or m-values).

ignoreInvalidLocations

Property
ignoreInvalidLocations Boolean

Specify whether invalid input locations should be ignored when finding the best solution. An input point is deemed invalid by the operation if it is not within the maximum snap tolerance of any traversable street. When true invalid points are ignored. When false any invalid point in your request will cause the operation to return a failure.

impedanceAttribute

Property
impedanceAttribute String

Specifies the impedance.

Impedance is a value that quantifies travel along the transportation network. Travel distance is an example of impedance; it quantifies the length of walkways and road segments. Similarly, drive time—the typical time it takes to drive a car along a road segment—is an example of impedance. This property will be ignored if travelMode is set.

Possible Values:"kilometers"|"miles"|"minutes"|"travel-time"|"truck-minutes"|"truck-travel-time"|"walk-time"

outputGeometryPrecision

Property
outputGeometryPrecision Number

Use this property to specify by how much you want to simplify the route geometry returned by the operation. Simplification maintains critical points on a route, such as turns at intersections, to define the essential shape of the route and removes other points. The value of this property, regardless of whether you rely on the default or explicitly set a value, is overridden when you pass in travelMode.

The units are specified with the outputGeometryPrecisionUnits parameter.

outputGeometryPrecisionUnits

Property
outputGeometryPrecisionUnits String

Use this property to specify the units for the value specified for the outputGeometryPrecision parameter. The value of this parameter, regardless of whether you rely on the default or explicitly set a value, is overridden when you pass in travelMode.

Possible Values:"centimeters"|"decimal-degrees"|"decimeters"|"feet"|"inches"|"kilometers"|"meters"|"miles"|"millimeters"|"nautical-miles"|"points"|"yards"

outputLines

Property
outputLines String

Use this property to specify the type of route features that are output by the operation. This parameter is applicable only if the returnRoutes parameter is set to true.

Possible Value Description
none Do not return any shapes for the routes.
straight Return a straight line between the stops.
true-shape Return the exact shape of the resulting route that is based on the underlying streets.
true-shape-with-measure Return the exact shape of the resulting route that is based on the underlying streets and include route measurements that keep track of the cumulative travel time or travel distance along the route relative to the first stop.

Possible Values:"none"|"straight"|"true-shape"|"true-shape-with-measure"

Default Value:"true-shape"
See also

outSpatialReference

Property
outSpatialReference SpatialReference

Use this property to specify the spatial reference of the geometries, such as line or point features, returned by a solve operation.

See also

overrides

Property
overrides Object
Since: ArcGIS Maps SDK for JavaScript 4.24 RouteParameters since 4.20, overrides added at 4.24.

Specify additional settings that can influence the behavior of the solver when finding solutions for the network analysis problems.

See also

Use this property to specify one or more points that will act as temporary restrictions or represent additional time or distance that may be required to travel on the underlying streets. For example, a point barrier can be used to represent a fallen tree along a street or a time delay spent at a railroad crossing.

See also

polygonBarriers

Property
polygonBarriers Collection<PolygonBarrier>|DataLayer|FeatureSet|NetworkFeatureSet|NetworkUrl

Use this property to specify polygons that either completely restrict travel or proportionately scale the time or distance required to travel on the streets intersected by the polygons.

See also

polylineBarriers

Property
polylineBarriers Collection<PolylineBarrier>|DataLayer|FeatureSet|NetworkFeatureSet|NetworkUrl

Use this property to specify one or more lines that prohibit travel anywhere the lines intersect the streets. For example, a parade or protest that blocks traffic across several street segments can be modeled with a line barrier.

See also

preserveFirstStop

Property
preserveFirstStop Boolean

Use this property to indicate whether the operation should keep the first stop fixed when reordering the stops. This property is applicable only if the findBestSequence parameter value is true.

preserveLastStop

Property
preserveLastStop Boolean

Use this property to indicate whether the operation should keep the last stop fixed when reordering the stops. This property is applicable only if the findBestSequence parameter value is true.

See also

preserveObjectID

Property
preserveObjectID Boolean
Since: ArcGIS Maps SDK for JavaScript 4.24 RouteParameters since 4.20, preserveObjectID added at 4.24.

Use this property to specify if the Object IDs specified for input locations such as stops or barriers should be preserved when the input locations are returned as output.

See also

restrictionAttributes

Property
restrictionAttributes String[]

Use this property to specify which restrictions should be honored by the operation. A restriction represents a driving preference or requirement. This value is ignored if travelMode is specified.

Possible Values:"any-hazmat-prohibited"|"avoid-carpool-roads"|"avoid-express-lanes"|"avoid-ferries"|"avoid-gates"|"avoid-limited-access-roads"|"avoid-private-roads"|"avoid-roads-unsuitable-for-pedestrians"|"avoid-stairways"|"avoid-toll-roads"|"avoid-toll-roads-for-trucks"|"avoid-truck-restricted-roads"|"avoid-unpaved-roads"|"axle-count-restriction"|"driving-a-bus"|"driving-a-taxi"|"driving-a-truck"|"driving-an-automobile"|"driving-an-emergency-vehicle"|"height-restriction"|"kingpin-to-rear-axle-length-restriction"|"length-restriction"|"preferred-for-pedestrians"|"riding-a-motorcycle"|"roads-under-construction-prohibited"|"semi-or-tractor-with-one-or-more-trailers-prohibited"|"single-axle-vehicles-prohibited"|"tandem-axle-vehicles-prohibited"|"through-traffic-prohibited"|"truck-with-trailers-restriction"|"use-preferred-hazmat-routes"|"use-preferred-truck-routes"|"walking"|"weight-restriction"|"string"

restrictUTurns

Property
restrictUTurns String

Use this property to restrict or permit the route from making U-turns at junctions. This value is ignored if travelMode is specified.

Possible Values:"allow-backtrack"|"at-dead-ends-only"|"no-backtrack"|"at-dead-ends-and-intersections"

See also

returnBarriers

Property
returnBarriers Boolean

Specify whether point barriers will be returned by the routing operation.

Default Value:false
See also

returnDirections

Property
returnDirections Boolean

Specify whether the operation should generate driving directions for each route. If true directions are configured based on the values for the directionsLanguage, directionsOutputType, directionsStyleName, and directionsLengthUnits properties.

Default Value:false
See also

returnPolygonBarriers

Property
returnPolygonBarriers Boolean

Specify whether polygon barriers will be returned by the routing operation.

Default Value:false
See also

returnPolylineBarriers

Property
returnPolylineBarriers Boolean

Specify whether polyline barriers will be returned by the routing operation.

Default Value:false
See also

returnRoutes

Property
returnRoutes Boolean

Use this property to specify if the operation should return routes. If true, the shape of the routes depends on the value for the outputLines property.

Default Value:true
See also

returnStops

Property
returnStops Boolean

Use this property to specify whether stops will be returned by the routing operation.

Default Value:false
See also

returnTraversedEdges

Property
returnTraversedEdges Boolean
Since: ArcGIS Maps SDK for JavaScript 4.24 RouteParameters since 4.20, returnTraversedEdges added at 4.24.

Specify whether traversed edges will be returned by the operation.

returnTraversedJunctions

Property
returnTraversedJunctions Boolean
Since: ArcGIS Maps SDK for JavaScript 4.24 RouteParameters since 4.20, returnTraversedJunctions added at 4.24.

Specify whether traversed junctions will be returned by the operation.

returnTraversedTurns

Property
returnTraversedTurns Boolean
Since: ArcGIS Maps SDK for JavaScript 4.24 RouteParameters since 4.20, returnTraversedTurns added at 4.24.

Specify whether traversed turns will be returned by the operation.

returnZ

Property
returnZ Boolean

Include z values for the returned geometries if supported by the underlying network.

Default Value:true
See also

startTime

Property
startTime Date|String

Indicates the time that travel should begin. Please note that the "now" keyword is only supported on servers with a version of 10.8.1 or greater. If a start time is not provided, the route is based on historically average traffic conditions, average speeds, and posted speed limits.

When a startTime of "now" is used the startTimeIsUTC property is ignored.

For RouteParameters the startTime is always "now".

Default Value:null
See also

startTimeIsUTC

Property
startTimeIsUTC Boolean

Specify the time zone or zones of the startTime property.

Default Value:true
See also

Specifies the locations the output route or routes will visit.

See also
Examples
// Define stops using a FeatureSet.
const routeParameters = new RouteParameters({
  stops: new FeatureSet({
      features: [
      new Graphic({
        attributes: { Name: "Redlands" },
        geometry: new Point({ x: -117.1825, y: 34.054722 })
      }),
      new Graphic({
        attributes: { Name: "Palm Springs" },
        geometry: new Point({ x: -116.545278, y: 33.830278 })
      })
    ]
  })
});
// Define stops using a collection of Stops.
const routeParameters = new RouteParameters({
  stops: new Collection([
    new Stop({ name: "Redlands", geometry: { x: -117.1825, y: 34.054722 }}),
    new Stop({ name: "Palm Springs", geometry: { x: -116.545278, y: 33.830278 }})
  ])
});

timeWindowsAreUTC

Property
timeWindowsAreUTC Boolean
Since: ArcGIS Maps SDK for JavaScript 4.24 RouteParameters since 4.20, timeWindowsAreUTC added at 4.24.

Specify whether the timeWindowStart and timeWindowEnd property values on stops are specified in UTC or geographically local time.

travelMode

Property
travelMode TravelMode

A travel mode represents a means of transportation, such as driving or walking. Travel modes define the physical characteristics of a vehicle or pedestrian.

Use networkService.fetchServiceDescription to obtain a list of predefined travel modes and the default travel mode that is used if one is not specified in a routing reqest.

Example
// Display the fastest walking time route between two existing graphics.
const apiKey = "<your-api-key>";
const url = "https://route-api.arcgis.com/arcgis/rest/services/World/Route/NAServer/Route_World";

// Obtain the routing service's description. The description contains all preset travel modes.
const serviceDescription = await networkService.fetchServiceDescription(url, apiKey);

// Find the named travel mode called "Walking Time".
const { supportedTravelModes } = serviceDescription;
const travelMode = supportedTravelModes.find((mode) => mode.name === "Walking Time");

// Construct the route parameter object.
const routeParameters = new RouteParameters({
  apiKey,
  stops: new FeatureSet({
    features: view.graphics.toArray()
  }),
  returnDirections: true,
  travelMode
});

// Solve the route and add the path representing the fastest walk path to the map.
const routeContainer = await route.solve(url, routeParameters);
for (const routeResult of routeContainer.routeResults) {
  const { routeLayer } = routeResult;
  routeLayer.symbol = {
    type: "simple-line",
    color: [5, 150, 255],
    width: 3
  };
  view.graphics.add(routeLayer);
}

useHierarchy

Property
useHierarchy Boolean

Specify whether hierarchy should be used when finding the shortest paths. This value is ignored if a travelMode is specified.

See also

useTimeWindows

Property
useTimeWindows Boolean

Use this property to indicate whether the operation should consider time windows specified on the stops when finding the best route. The time windows are specified on stops using the timeWindowStart and timeWindowEnd properties.

See also

Method Overview

Show inherited methods Hide inherited methods
Name Return Type Summary Class

Adds one or more handles which are to be tied to the lifecycle of the object.

Accessor
this

Creates a deep clone of this object.

RouteParameters
*

Creates a new instance of this class and initializes it with values from a JSON object generated from an ArcGIS product.

RouteParameters
Boolean

Returns true if a named group of handles exist.

Accessor

Removes a group of handles owned by the object.

Accessor
Object

Converts an instance of this class to its ArcGIS portal JSON representation.

RouteParameters

Method Details

addHandles

Inherited
Method
addHandles(handleOrHandles, groupKey)
Inherited from Accessor
Since: ArcGIS Maps SDK for JavaScript 4.25 Accessor since 4.0, addHandles added at 4.25.

Adds one or more handles which are to be tied to the lifecycle of the object. The handles will be removed when the object is destroyed.

// Manually manage handles
const handle = reactiveUtils.when(
  () => !view.updating,
  () => {
    wkidSelect.disabled = false;
  },
  { once: true }
);

this.addHandles(handle);

// Destroy the object
this.destroy();
Parameters
handleOrHandles WatchHandle|WatchHandle[]

Handles marked for removal once the object is destroyed.

groupKey *
optional

Key identifying the group to which the handles should be added. All the handles in the group can later be removed with Accessor.removeHandles(). If no key is provided the handles are added to a default group.

clone

Method
clone(){this}

Creates a deep clone of this object. Any properties that store values by reference will be assigned copies of the referenced values on the cloned instance.

Returns
Type Description
this A deep clone of the class instance that invoked this method.

fromJSON

Method
fromJSON(json){*}static

Creates a new instance of this class and initializes it with values from a JSON object generated from an ArcGIS product. The object passed into the input json parameter often comes from a response to a query operation in the REST API or a toJSON() method from another ArcGIS product. See the Using fromJSON() topic in the Guide for details and examples of when and how to use this function.

Parameter
json Object

A JSON representation of the instance in the ArcGIS format. See the ArcGIS REST API documentation for examples of the structure of various input JSON objects.

Returns
Type Description
* Returns a new instance of this class.

hasHandles

Inherited
Method
hasHandles(groupKey){Boolean}
Inherited from Accessor
Since: ArcGIS Maps SDK for JavaScript 4.25 Accessor since 4.0, hasHandles added at 4.25.

Returns true if a named group of handles exist.

Parameter
groupKey *
optional

A group key.

Returns
Type Description
Boolean Returns true if a named group of handles exist.
Example
// Remove a named group of handles if they exist.
if (obj.hasHandles("watch-view-updates")) {
  obj.removeHandles("watch-view-updates");
}

removeHandles

Inherited
Method
removeHandles(groupKey)
Inherited from Accessor
Since: ArcGIS Maps SDK for JavaScript 4.25 Accessor since 4.0, removeHandles added at 4.25.

Removes a group of handles owned by the object.

Parameter
groupKey *
optional

A group key or an array or collection of group keys to remove.

Example
obj.removeHandles(); // removes handles from default group

obj.removeHandles("handle-group");
obj.removeHandles("other-handle-group");

toJSON

Method
toJSON(){Object}

Converts an instance of this class to its ArcGIS portal JSON representation. See the Using fromJSON() guide topic for more information.

Returns
Type Description
Object The ArcGIS portal JSON representation of an instance of this class.

Type Definitions

AttributeParameterValue

Type Definition
AttributeParameterValue

An object describing the parameter values for the attributeParameterValues property of RouteParameters.

Properties
attributeName String

The name of the restriction.

parameterName String

The name of the parameter associated with the restriction. A restriction can have one or more parameterName properties.

value String|Number

The value for parameterName.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.