RepresentedCountry Constructor (String, NullableInt32, NullableInt64, Boolean, String, IDictionaryString, String, IEnumerableString) |
Constructor
Namespace:
MaxMind.GeoIP2.Model
Assembly:
MaxMind.GeoIP2 (in MaxMind.GeoIP2.dll) Version: 3.0.0
Syntax public RepresentedCountry(
string type = null,
Nullable<int> confidence = null,
Nullable<long> geoNameId = null,
bool isInEuropeanUnion = false,
string isoCode = null,
IDictionary<string, string> names = null,
IEnumerable<string> locales = null
)
Public Sub New (
Optional type As String = Nothing,
Optional confidence As Nullable(Of Integer) = Nothing,
Optional geoNameId As Nullable(Of Long) = Nothing,
Optional isInEuropeanUnion As Boolean = false,
Optional isoCode As String = Nothing,
Optional names As IDictionary(Of String, String) = Nothing,
Optional locales As IEnumerable(Of String) = Nothing
)
public:
RepresentedCountry(
String^ type = nullptr,
Nullable<int> confidence = nullptr,
Nullable<long long> geoNameId = nullptr,
bool isInEuropeanUnion = false,
String^ isoCode = nullptr,
IDictionary<String^, String^>^ names = nullptr,
IEnumerable<String^>^ locales = nullptr
)
new :
?type : string *
?confidence : Nullable<int> *
?geoNameId : Nullable<int64> *
?isInEuropeanUnion : bool *
?isoCode : string *
?names : IDictionary<string, string> *
?locales : IEnumerable<string>
(* Defaults:
let _type = defaultArg type null
let _confidence = defaultArg confidence null
let _geoNameId = defaultArg geoNameId null
let _isInEuropeanUnion = defaultArg isInEuropeanUnion false
let _isoCode = defaultArg isoCode null
let _names = defaultArg names null
let _locales = defaultArg locales null
*)
-> RepresentedCountry
Parameters
- type (Optional)
- Type: SystemString
- confidence (Optional)
- Type: SystemNullableInt32
- geoNameId (Optional)
- Type: SystemNullableInt64
- isInEuropeanUnion (Optional)
- Type: SystemBoolean
- isoCode (Optional)
- Type: SystemString
- names (Optional)
- Type: System.Collections.GenericIDictionaryString, String
- locales (Optional)
- Type: System.Collections.GenericIEnumerableString
See Also