NetworkHelperCidrToIPRange Method  | 
 
            Parses the specified IP address range in CIDR notation and returns a tuple containing the (inclusive) start and end IP addresses of the range.
            
 
    Namespace: 
   Dundas.BI.Utility
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxpublic static Tuple<IPAddress, IPAddress> CidrToIPRange(
	string cidr
)
Public Shared Function CidrToIPRange ( 
	cidr As String
) As Tuple(Of IPAddress, IPAddress)
public:
static Tuple<IPAddress^, IPAddress^>^ CidrToIPRange(
	String^ cidr
)
static member CidrToIPRange : 
        cidr : string -> Tuple<IPAddress, IPAddress> 
Parameters
- cidr
 - Type: SystemString
The IP address range in CIDR notation. 
Return Value
Type: 
TupleIPAddress, 
IPAddressThe starting and ending IP addresses of the range.
Exceptions
See Also