IPNetwork Class

Definition

A representation of an IP network based on CIDR notation.

public ref class IPNetwork
public class IPNetwork
type IPNetwork = class
Public Class IPNetwork
Inheritance
IPNetwork

Constructors

IPNetwork(IPAddress, Int32)

Create a new IPNetwork with the specified IPAddress and prefix length.

Properties

Prefix

Get the IPAddress that represents the prefix for the network.

PrefixLength

The CIDR notation of the subnet mask

Methods

Contains(IPAddress)

Determine whether a given The IPAddress is part of the IP network.

Parse(ReadOnlySpan<Char>)

Converts the specified ReadOnlySpan<T> of char representation of an IP address and a prefix length to its IPNetwork equivalent.

TryParse(ReadOnlySpan<Char>, IPNetwork)

Converts the specified ReadOnlySpan<T> of char representation of an IP address and a prefix length to its IPNetwork equivalent, and returns a value that indicates whether the conversion succeeded.

Applies to