ReflectionIPAddress 0.6.1

dotnet add package ReflectionIPAddress --version 0.6.1                
NuGet\Install-Package ReflectionIPAddress -Version 0.6.1                
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="ReflectionIPAddress" Version="0.6.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ReflectionIPAddress --version 0.6.1                
#r "nuget: ReflectionIPAddress, 0.6.1"                
#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 ReflectionIPAddress as a Cake Addin
#addin nuget:?package=ReflectionIPAddress&version=0.6.1

// Install ReflectionIPAddress as a Cake Tool
#tool nuget:?package=ReflectionIPAddress&version=0.6.1                

ReflectionIPAddress

NuGet Version Build Status GitHub Sponsors

This is a library that checks the external IP address of a running PC, acquires a wildcard domain, and searches IP band information.

This library implements the simultaneous queries of several free services (e.g. ipify.org, ip6.me, etc.) that provide a service that allows you to look up the other party's external IP address in a similar way without separate authentication, thereby ensuring service stability guaranteed.

Also, this library explicitly uses direct TCP socket connections and SSL connections to use IPv4 or IPv6 communication.

Update

v0.6.1

  • Added a new service, CloudflareTraceService, to support Cloudflare Trace protocol to get the public IP address.

v0.6.0

  • Starting with v0.6, the library supports STUN protocol to get the public IP address.
  • Added a new service, GoogleStunService, to support STUN protocol to get the public IP address.

Requirements

  • Requires a platform with .NET Standard 2.0 or later
    • Supported .NET Version: .NET Core 2.0+, .NET 5+, .NET Framework 4.6.1+, Mono 5.4+, UWP 10.0.16299+, Unity 2018.1+

How to use

using ReflectionIPAddress;

...

var services = new PublicAddressReflectionServices()
	.AddService<CloudflareTraceService>()
	.AddService<IpifyService>()
	.AddService<SeeIPService>()
	.AddService<IP6MeService>()
	.AddService<CurlMyIPService>()
	.AddService<ICanHazIPService>()
	.AddService<IFConfigService>()
	.AddService<GoogleStunService>();

// Returns the IP address by checking for the fastest successful response among the specified services.
var ipv4Address = await services.ReflectIPv4Async();
var sslipDomain = ipv4Address.ToSSLIPDomain();

//var ipv6Address = await services.ReflectIPv6Async();

Console.Out.WriteLine($"IPv4 Address: {ipv4Address}, SSLIP Domain: {sslipDomain}");")

License

This library follows Apache-2.0 license. See LICENSE file for more information.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
0.6.1 74 7/19/2024
0.6.0 71 7/19/2024
0.5.1 66 7/18/2024
0.5.0 70 7/18/2024