Sdílet prostřednictvím


RoutingPreference Constructors

Definition

Overloads

RoutingPreference()

Initializes a new instance of the RoutingPreference class.

RoutingPreference(String, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the RoutingPreference class.

RoutingPreference()

Initializes a new instance of the RoutingPreference class.

public RoutingPreference ();
Public Sub New ()

Applies to

RoutingPreference(String, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the RoutingPreference class.

public RoutingPreference (string routingChoice = default, bool? publishMicrosoftEndpoints = default, bool? publishInternetEndpoints = default);
new Microsoft.Azure.Management.Storage.Models.RoutingPreference : string * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.Storage.Models.RoutingPreference
Public Sub New (Optional routingChoice As String = Nothing, Optional publishMicrosoftEndpoints As Nullable(Of Boolean) = Nothing, Optional publishInternetEndpoints As Nullable(Of Boolean) = Nothing)

Parameters

routingChoice
String

Routing Choice defines the kind of network routing opted by the user. Possible values include: 'MicrosoftRouting', 'InternetRouting'

publishMicrosoftEndpoints
Nullable<Boolean>

A boolean flag which indicates whether microsoft routing storage endpoints are to be published

publishInternetEndpoints
Nullable<Boolean>

A boolean flag which indicates whether internet routing storage endpoints are to be published

Applies to