Click or drag to resize

RemoteVehicleInformationServiceLimits Method

OFV Kjøretøydata service

Get limits specified in WEB.CONFIG

Namespace:  OfvVehicleData.Service
Assembly:  OfvVehicleData.Service (in OfvVehicleData.Service.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public SortedList<string, string> Limits(
	string format
)

Parameters

format
Type: SystemString
json/xml - which format result will be delivered in.

Return Value

Type: SortedListString, String
Returns a list of strings and values.
Examples
Here`s an example on how result is returned.
Input
https: //remote.kjoretoydata.no/RemoteCustomer/limits?format=json
Output
[{
    "Key": "BrandLimit",
    "Value": "5"
}, {
    "Key": "FilterResultLimit",
    "Value": "300"
}, {
    "Key": "ModelLimit",
    "Value": "30"
}, {
    "Key": "ReportCompareLimit",
    "Value": "5"
}, {
    "Key": "ReportResultLimit",
    "Value": "500"
}
]
See Also