Share via


IPNetwork Class

Definition

Caution

Please use System.Net.IPNetwork instead. For more information, visit https://aka.ms/aspnet/deprecate/005.

A representation of an IP network based on CIDR notation. Please use IPNetwork instead

public ref class IPNetwork
public class IPNetwork
[System.Obsolete("Please use System.Net.IPNetwork instead. For more information, visit https://aka.ms/aspnet/deprecate/005.", DiagnosticId="ASPDEPR005", UrlFormat="https://aka.ms/aspnet/deprecate/005")]
public class IPNetwork
type IPNetwork = class
[<System.Obsolete("Please use System.Net.IPNetwork instead. For more information, visit https://aka.ms/aspnet/deprecate/005.", DiagnosticId="ASPDEPR005", UrlFormat="https://aka.ms/aspnet/deprecate/005")>]
type IPNetwork = class
Public Class IPNetwork
Inheritance
IPNetwork
Attributes

Constructors

Name Description
IPNetwork(IPAddress, Int32)

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

Properties

Name Description
Prefix

Get the IPAddress that represents the prefix for the network.

PrefixLength

The CIDR notation of the subnet mask

Methods

Name Description
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