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