IpStack 2.2.0

dotnet add package IpStack --version 2.2.0
NuGet\Install-Package IpStack -Version 2.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IpStack" Version="2.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IpStack --version 2.2.0
#r "nuget: IpStack, 2.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install IpStack as a Cake Addin
#addin nuget:?package=IpStack&version=2.2.0

// Install IpStack as a Cake Tool
#tool nuget:?package=IpStack&version=2.2.0

IpStack

.NET wrapper to query the IpStack API for IP address data.

Installation

To use IpStack in your C# project, you can either download the IpStack C# .NET libraries directly from the Github repository or, if you have the NuGet package manager installed, you can grab them automatically.

PM> Install-Package IpStack

Once you have the IpStack libraries properly referenced in your project, you can include calls to them in your code.

Add the following namespaces to use the library:

using IpStack;
using IpStack.Models;

Usage

The client is intended to be used via Dependency Injection and added using the AddIpStack extension.

// Add API client
serviceCollection.AddIpStack(
    "<API KEY>"
    );

The injected client can then be used as expected.

public class App
{
    private readonly ILogger<App> _logger;
    private readonly IIpStackService _IpStackService;

    public App(ILoggerFactory loggerFactory, IIpStackService IpStackService)
    {
        _logger = loggerFactory.CreateLogger<App>();
        _IpStackService = IpStackService;
    }

    public async Task RunAsync()
    {
        var ipAddressDetails = await _IpStackService.GetIpAddressDetailsAsync();
    }
}

See the debug project for an example.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.0 52 3/27/2024
2.1.0 2,369 6/26/2023
2.0.0 4,091 3/22/2022
1.0.1 96,100 10/9/2019
1.0.0 6,339 6/11/2018

Refactor