CacheNetworkSettings Constructors

Definition

Overloads

CacheNetworkSettings()

Initializes a new instance of the CacheNetworkSettings class.

CacheNetworkSettings(Nullable<Int32>, IList<String>, IList<String>, String, String)

Initializes a new instance of the CacheNetworkSettings class.

CacheNetworkSettings()

Initializes a new instance of the CacheNetworkSettings class.

public CacheNetworkSettings ();
Public Sub New ()

Applies to

CacheNetworkSettings(Nullable<Int32>, IList<String>, IList<String>, String, String)

Initializes a new instance of the CacheNetworkSettings class.

public CacheNetworkSettings (int? mtu = default, System.Collections.Generic.IList<string> utilityAddresses = default, System.Collections.Generic.IList<string> dnsServers = default, string dnsSearchDomain = default, string ntpServer = default);
new Microsoft.Azure.Management.StorageCache.Models.CacheNetworkSettings : Nullable<int> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * string * string -> Microsoft.Azure.Management.StorageCache.Models.CacheNetworkSettings
Public Sub New (Optional mtu As Nullable(Of Integer) = Nothing, Optional utilityAddresses As IList(Of String) = Nothing, Optional dnsServers As IList(Of String) = Nothing, Optional dnsSearchDomain As String = Nothing, Optional ntpServer As String = Nothing)

Parameters

mtu
Nullable<Int32>

The IPv4 maximum transmission unit configured for the subnet.

utilityAddresses
IList<String>

Array of additional IP addresses used by this Cache.

dnsServers
IList<String>

DNS servers for the cache to use. It will be set from the network configuration if no value is provided.

dnsSearchDomain
String

DNS search domain

ntpServer
String

NTP server IP Address or FQDN for the cache to use. The default is time.windows.com.

Applies to