MachineIpAddress Constructors

Definition

Overloads

Name Description
MachineIpAddress()

Initializes a new instance of the MachineIpAddress class.

MachineIpAddress(String, String)

Initializes a new instance of the MachineIpAddress class.

MachineIpAddress()

Initializes a new instance of the MachineIpAddress class.

public MachineIpAddress();
Public Sub New ()

Applies to

MachineIpAddress(String, String)

Initializes a new instance of the MachineIpAddress class.

public MachineIpAddress(string family = default, string ip = default);
new Microsoft.Azure.Management.ContainerService.Models.MachineIpAddress : string * string -> Microsoft.Azure.Management.ContainerService.Models.MachineIpAddress
Public Sub New (Optional family As String = Nothing, Optional ip As String = Nothing)

Parameters

family
String

To determine if address belongs IPv4 or IPv6 family Possible values include: 'IPv4', 'IPv6'

ip
String

IPv4 or IPv6 address of the machine

Applies to