IPAddressOrRange Constructors
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.
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.Cosmos.Table.IPAddressOrRange : string -> Microsoft.Azure.Cosmos.Table.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.Cosmos.Table.IPAddressOrRange : string * string -> Microsoft.Azure.Cosmos.Table.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
Azure SDK for .NET