Share via


IPAddressOrRange Constructors

Definition

Overloads

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.

IPAddressOrRange(String)

Initializes a new instance of the IPAddressOrRange class from a single IPAddress.

public IPAddressOrRange (string address);
new Microsoft.Azure.Storage.IPAddressOrRange : string -> Microsoft.Azure.Storage.IPAddressOrRange
Public Sub New (address As String)

Parameters

address
String

The IP Address that the IPAddressOrRange object will represent.

Applies to

IPAddressOrRange(String, String)

Initializes a new instance of the IPAddressOrRange class from two IPAddress objects, a minimum and a maximum.

public IPAddressOrRange (string minimum, string maximum);
new Microsoft.Azure.Storage.IPAddressOrRange : string * string -> Microsoft.Azure.Storage.IPAddressOrRange
Public Sub New (minimum As String, maximum As String)

Parameters

minimum
String

The minimum IP Address that the IPAddressOrRange object will use as a range boundary, inclusive.

maximum
String

The maximum IP Address that the IPAddressOrRange object will use as a range boundary, inclusive.

Applies to