Skip to content

Releases: ipdata/dotnet

v2.0.1

15 Feb 11:32
a3c1bea
Compare
Choose a tag to compare
  • 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}");

v2.0.0

26 Sep 23:54
Compare
Choose a tag to compare
  • Fixed issue with ASN deserialization
  • Added support
    • ASN https://api.ipdata.co/asn/1.1.1.1?api-key=test
    • Threat https://api.ipdata.co/1.1.1.1/threat?api-key=test
    • Currency https://api.ipdata.co/1.1.1.1/currency?api-key=test
    • TimeZone https://api.ipdata.co/1.1.1.1/time_zone?api-key=test
  • Updated docs
  • Got rid of coveralls

v1.1.0

20 May 19:46
Compare
Choose a tag to compare

Changelog

  • Changed type of RegionCode property on IpInfo class from int? to string
  • Updated nuget packages
  • Fixed compilation warning
  • Added .editorconfig