Class RequestBase
Base class for all requests.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.RadMap.dll
Syntax
public abstract class RequestBase
Constructors
RequestBase()
Initializes a new instance of the BaseRequest class.
Declaration
protected RequestBase()
Properties
Culture
The culture in which to return results.
Declaration
public CultureInfo Culture { get; set; }
Property Value
System.Globalization.CultureInfo
The culture. |
CurrentIP
Gets or sets the current ip of the user. Optional. IPv4 format. Set this property before making a service request.
Declaration
public string CurrentIP { get; set; }
Property Value
System.String
The current ip. |
CurrentLocation
Gets or sets the current location of the user. Optional. Set this property before making a service request.
Declaration
public PointG CurrentLocation { get; set; }
Property Value
PointG
The current location. |
DistanceUnit
Gets or sets distance unit.
Declaration
public DistanceUnit DistanceUnit { get; set; }
Property Value
DistanceUnit
The distance unit. |
UserData
Gets or sets user data. This data will be passed to the response which corresponds to this request. It can be used to identify request-response pair, for example. User data can be obtain from the response through the RequestUserData property.
Declaration
public object UserData { get; set; }
Property Value
System.Object
The user data. |