IPAddressOrRange Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies either a single IP Address or a single range of IP Addresses (a minimum and a maximum, inclusive.)
public class IPAddressOrRange
type IPAddressOrRange = class
Public Class IPAddressOrRange
- Inheritance
-
IPAddressOrRange
Constructors
IPAddressOrRange(String) |
Initializes a new instance of the IPAddressOrRange class from a single IPAddress. |
IPAddressOrRange(String, String) |
Initializes a new instance of the IPAddressOrRange class from two IPAddress objects, a minimum and a maximum. |
Properties
Address |
The IP Address. Returns null if this object represents a range of IP addresses. |
IsSingleAddress |
True if this object represents a single IP Address, false if it represents a range. |
MaximumAddress |
The maximum IP Address for the range, inclusive. Returns null if this object represents a single IP address. |
MinimumAddress |
The minimum IP Address for the range, inclusive. Returns null if this object represents a single IP address. |
Methods
ToString() |
Provides a string representation of this IPAddressOrRange object. |