Bagikan melalui


GatewayRoute Constructors

Definition

Overloads

GatewayRoute()

Initializes a new instance of the GatewayRoute class.

GatewayRoute(String, String, String, String, String, String, Nullable<Int32>)

Initializes a new instance of the GatewayRoute class.

GatewayRoute()

Initializes a new instance of the GatewayRoute class.

public GatewayRoute ();
Public Sub New ()

Applies to

GatewayRoute(String, String, String, String, String, String, Nullable<Int32>)

Initializes a new instance of the GatewayRoute class.

public GatewayRoute (string localAddress = default, string network = default, string nextHop = default, string sourcePeer = default, string origin = default, string asPath = default, int? weight = default);
new Microsoft.Azure.Management.Network.Fluent.Models.GatewayRoute : string * string * string * string * string * string * Nullable<int> -> Microsoft.Azure.Management.Network.Fluent.Models.GatewayRoute
Public Sub New (Optional localAddress As String = Nothing, Optional network As String = Nothing, Optional nextHop As String = Nothing, Optional sourcePeer As String = Nothing, Optional origin As String = Nothing, Optional asPath As String = Nothing, Optional weight As Nullable(Of Integer) = Nothing)

Parameters

localAddress
String

The gateway's local address.

network
String

The route's network prefix.

nextHop
String

The route's next hop.

sourcePeer
String

The peer this route was learned from.

origin
String

The source this route was learned from.

asPath
String

The route's AS path sequence.

weight
Nullable<Int32>

The route's weight.

Applies to