Skip to content

v2.0.1

Latest
Compare
Choose a tag to compare
@alexkhil alexkhil released this 15 Feb 11:32
· 6 commits to master since this release
a3c1bea
  • Added ability to fetch multiple fields:
    // Get multiple fields from IP
    var geolocation = await client.Lookup("8.8.8.8", x => x.Latitude, x => x.Longitude);
    Console.WriteLine($"Geolocation for 8.8.8.8 is lat: {geolocation.Latitude} long: {geolocation.Longitude}");