ReaderFindT Method (IPAddress, InjectableValues) |
Finds the data related to the specified address.
Namespace:
MaxMind.Db
Assembly:
MaxMind.Db (in MaxMind.Db.dll) Version: 2.4.0
Syntax public T Find<T>(
IPAddress ipAddress,
InjectableValues injectables = null
)
where T : class
Public Function Find(Of T As Class) (
ipAddress As IPAddress,
Optional injectables As InjectableValues = Nothing
) As T
public:
generic<typename T>
where T : ref class
T Find(
IPAddress^ ipAddress,
InjectableValues^ injectables = nullptr
)
member Find :
ipAddress : IPAddress *
?injectables : InjectableValues
(* Defaults:
let _injectables = defaultArg injectables null
*)
-> 'T when 'T : not struct
Parameters
- ipAddress
- Type: System.NetIPAddress
The IP address. - injectables (Optional)
- Type: MaxMind.DbInjectableValues
Value to inject during deserialization
Type Parameters
- T
Return Value
Type:
TAn object containing the IP related data
See Also