MyIpAddress 1.0.0

dotnet add package MyIpAddress --version 1.0.0
                    
NuGet\Install-Package MyIpAddress -Version 1.0.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="MyIpAddress" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MyIpAddress" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="MyIpAddress" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MyIpAddress --version 1.0.0
                    
#r "nuget: MyIpAddress, 1.0.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.
#addin nuget:?package=MyIpAddress&version=1.0.0
                    
Install MyIpAddress as a Cake Addin
#tool nuget:?package=MyIpAddress&version=1.0.0
                    
Install MyIpAddress as a Cake Tool

MyIpAddress MyIpAddress is a .NET library that provides utilities for working with IP addresses, including validation, retrieval of local IPv4 addresses, and access control based on IP addresses.

Installation You can install the MyIpAddress package via NuGet Package Manager. Run the following command in your Package Manager Console:

Install-Package MyIpAddress Alternatively, you can add it to your project file:

xml

Verify

Open In Editor Edit Copy code <PackageReference Include="MyIpAddress" Version="1.0.0" /> Usage To use the IpAddressHelper class, you need to register the required services in your Startup.cs file:

public void ConfigureServices(IServiceCollection services) { services.AddHttpContextAccessor(); services.AddSingleton<IConfiguration>(Configuration); services.AddSingleton<IpAddressHelper>(); } You can then inject IpAddressHelper into your classes:

public class MyService { private readonly IpAddressHelper _ipAddressHelper;

public MyService(IpAddressHelper ipAddressHelper)
{
    _ipAddressHelper = ipAddressHelper;
}

public void ExampleMethod()
{
    string localIP = _ipAddressHelper.GetLocalIPv4Address();
    bool isValid = _ipAddressHelper.IsValidIpAddress(localIP);
    bool accessGranted = _ipAddressHelper.IsAccessGranted("AllowedIPs");
}

} Methods IsValidIpAddress(string ipAddress) Validates if the provided IP address is in a correct format.

GetLocalIPv4Address() Retrieves the local IPv4 address of the machine.

IsAccessGranted(string IPs) Checks if the client's IP address is in the allowed list defined in the configuration.

//public IActionResult CheckAccess() { // Retrieve the allowed IPs from configuration string allowedIPs = _configuration["AllowedIPs"];

bool isGranted = _ipAddressHelper.IsAccessGranted(allowedIPs);
if (isGranted)
{
    return Ok("Access granted.");
}
else
{
    return Forbid("Access denied.");
}

}

public partial class Default : System.Web.UI.Page { private IpAddressHelper _ipAddressHelper;

protected void Page_Load(object sender, EventArgs e)
{
    // Retrieve the service provider from the application context
    var serviceProvider = (IServiceProvider)Application["ServiceProvider"];
    _ipAddressHelper = serviceProvider.GetService<IpAddressHelper>();

    // Example usage
    string localIP = _ipAddressHelper.GetLocalIPv4Address();
    bool isValid = _ipAddressHelper.IsValidIpAddress(localIP);
    bool accessGranted = _ipAddressHelper.IsAccessGranted("AllowedIPs");
}

}

using Microsoft.Extensions.DependencyInjection;

public class Global : HttpApplication { protected void Application_Start(object sender, EventArgs e) { var services = new ServiceCollection(); services.AddHttpContextAccessor(); services.AddSingleton<IConfiguration>(new ConfigurationBuilder().Build()); services.AddTransient<IpAddressHelper>();

    // Build the service provider
    var serviceProvider = services.BuildServiceProvider();
    // Store the service provider for later use
    Application["ServiceProvider"] = serviceProvider;
}

}

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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
1.0.0 100 11/18/2024