ReflectionIPAddress 0.5.0
See the version list below for details.
dotnet add package ReflectionIPAddress --version 0.5.0
NuGet\Install-Package ReflectionIPAddress -Version 0.5.0
<PackageReference Include="ReflectionIPAddress" Version="0.5.0" />
paket add ReflectionIPAddress --version 0.5.0
#r "nuget: ReflectionIPAddress, 0.5.0"
// Install ReflectionIPAddress as a Cake Addin #addin nuget:?package=ReflectionIPAddress&version=0.5.0 // Install ReflectionIPAddress as a Cake Tool #tool nuget:?package=ReflectionIPAddress&version=0.5.0
ReflectIPAddress
This is a library that checks the external IP address of a running PC, acquires a wildcard domain, and searches IP band information.## Minimum Requirements
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.
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 ReflectIPAddress;
...
var services = new PublicAddressReflectionServices()
.AddService<IpifyService>()
.AddService<SeeIPService>()
.AddService<IP6MeService>()
.AddService<CurlMyIPService>()
.AddService<ICanHazIPService>()
.AddService<IFConfigService>();
// 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 | Versions 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. |
-
.NETStandard 2.0
- System.Text.Json (>= 8.0.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.