Location Constructor (NullableInt32, NullableDouble, NullableDouble, NullableInt32, String) |
Constructor
Namespace:
MaxMind.GeoIP2.Model
Assembly:
MaxMind.GeoIP2 (in MaxMind.GeoIP2.dll) Version: 3.0.0
Syntax public Location(
Nullable<int> accuracyRadius = null,
Nullable<double> latitude = null,
Nullable<double> longitude = null,
Nullable<int> metroCode = null,
string timeZone = null
)
Public Sub New (
Optional accuracyRadius As Nullable(Of Integer) = Nothing,
Optional latitude As Nullable(Of Double) = Nothing,
Optional longitude As Nullable(Of Double) = Nothing,
Optional metroCode As Nullable(Of Integer) = Nothing,
Optional timeZone As String = Nothing
)
public:
Location(
Nullable<int> accuracyRadius = nullptr,
Nullable<double> latitude = nullptr,
Nullable<double> longitude = nullptr,
Nullable<int> metroCode = nullptr,
String^ timeZone = nullptr
)
new :
?accuracyRadius : Nullable<int> *
?latitude : Nullable<float> *
?longitude : Nullable<float> *
?metroCode : Nullable<int> *
?timeZone : string
(* Defaults:
let _accuracyRadius = defaultArg accuracyRadius null
let _latitude = defaultArg latitude null
let _longitude = defaultArg longitude null
let _metroCode = defaultArg metroCode null
let _timeZone = defaultArg timeZone null
*)
-> Location
Parameters
- accuracyRadius (Optional)
- Type: SystemNullableInt32
- latitude (Optional)
- Type: SystemNullableDouble
- longitude (Optional)
- Type: SystemNullableDouble
- metroCode (Optional)
- Type: SystemNullableInt32
- timeZone (Optional)
- Type: SystemString
See Also