IPAddressRange 1.3.0.1

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

// Install IPAddressRange as a Cake Tool
#tool nuget:?package=IPAddressRange&version=1.3.0.1

This library allows you to parse range of IP address string such as "192.168.0.0/24" and "192.168.0.0/255.255.255.0" and "192.168.0.0-192.168.0.255", and can conatins check. This library supports both IPv4 and IPv6.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories (9)

Showing the top 5 popular GitHub repositories that depend on IPAddressRange:

Repository Stars
ThreeMammals/Ocelot
.NET API Gateway
slskd/slskd
A modern client-server application for the Soulseek file sharing network.
duyanming/Viper
Viper 是一个基于Anno微服务引擎开发的Dashboard示例项目。Anno 底层通讯采用 grpc、thrift。自带服务发现、调用链追踪、Cron 调度、限流、事件总线等等
LeonKou/NetPro
🌈An enhanced version with clean architecture of asp.netcore,efficiently manage startup,Support for netcore3.1/6.0
bitbrute/evillimiter-windows
Tool that limits bandwidth of devices on the same network without access.
Version Downloads Last updated
1.3.0.1 301 4/1/2015
1.3.0 41 4/1/2015
1.2.1 286 2/19/2015
1.2.0 197 2/5/2015
1.1.0-beta 748 11/4/2014
1.0.6 1,432 3/10/2014
1.0.5 132 12/9/2013
1.0.4 48 12/9/2013
1.0.3 49 12/9/2013
1.0.2 807 5/28/2012
1.0.1 66 5/22/2012
1.0.0 46 5/17/2012

v.1.3.0 - Enhance: support both "hyphen (-)" (0x002D) and "dash (–)" (0x2013) at begin-end format.
     v.1.2.1 - Fix: "Parse()" and "TryParse()" methods throw IndexOutOfRangeException when bit mask length is invalid at CIDR format.
     v.1.2.0 - Enhance: Add "Parse()" and "TryParse()" methods. (Instead, the constructor which has one string argument is obsoleted.)
     v.1.1.0 - Enhance: Add "Contains()" method overload version of IPAddressRange argument.
     v.1.0.6 - Fix Package: Repackage with Release build. (1.0.5 was Debug build)
     v.1.0.5 - Fix: IPv4 CIDR range ".../32" causes crush.
     v.1.0.4 - Enhance: support bit mask range not only CIDR range.
     v.1.0.3 - Fix: Can not parse the address which contains hex string.