You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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}");