NextHopResult Constructors

Definition

Overloads

NextHopResult()

Initializes a new instance of the NextHopResult class.

NextHopResult(String, String, String)

Initializes a new instance of the NextHopResult class.

NextHopResult()

Initializes a new instance of the NextHopResult class.

public NextHopResult ();
Public Sub New ()

Applies to

NextHopResult(String, String, String)

Initializes a new instance of the NextHopResult class.

public NextHopResult (string nextHopType = default, string nextHopIpAddress = default, string routeTableId = default);
new Microsoft.Azure.Management.Network.Models.NextHopResult : string * string * string -> Microsoft.Azure.Management.Network.Models.NextHopResult
Public Sub New (Optional nextHopType As String = Nothing, Optional nextHopIpAddress As String = Nothing, Optional routeTableId As String = Nothing)

Parameters

nextHopType
String

Next hop type. Possible values include: 'Internet', 'VirtualAppliance', 'VirtualNetworkGateway', 'VnetLocal', 'HyperNetGateway', 'None'

nextHopIpAddress
String

Next hop IP Address.

routeTableId
String

The resource identifier for the route table associated with the route being returned. If the route being returned does not correspond to any user created routes then this field will be the string 'System Route'.

Applies to