SmbSetting Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SmbSetting() |
Initializes a new instance of the SmbSetting class. |
SmbSetting(Multichannel, String, String, String, String) |
Initializes a new instance of the SmbSetting class. |
SmbSetting()
Initializes a new instance of the SmbSetting class.
public SmbSetting ();
Public Sub New ()
Applies to
SmbSetting(Multichannel, String, String, String, String)
Initializes a new instance of the SmbSetting class.
public SmbSetting (Microsoft.Azure.Management.Storage.Models.Multichannel multichannel = default, string versions = default, string authenticationMethods = default, string kerberosTicketEncryption = default, string channelEncryption = default);
new Microsoft.Azure.Management.Storage.Models.SmbSetting : Microsoft.Azure.Management.Storage.Models.Multichannel * string * string * string * string -> Microsoft.Azure.Management.Storage.Models.SmbSetting
Public Sub New (Optional multichannel As Multichannel = Nothing, Optional versions As String = Nothing, Optional authenticationMethods As String = Nothing, Optional kerberosTicketEncryption As String = Nothing, Optional channelEncryption As String = Nothing)
Parameters
- multichannel
- Multichannel
Multichannel setting. Applies to Premium FileStorage only.
- versions
- String
SMB protocol versions supported by server. Valid values are SMB2.1, SMB3.0, SMB3.1.1. Should be passed as a string with delimiter ';'.
- authenticationMethods
- String
SMB authentication methods supported by server. Valid values are NTLMv2, Kerberos. Should be passed as a string with delimiter ';'.
- kerberosTicketEncryption
- String
Kerberos ticket encryption supported by server. Valid values are RC4-HMAC, AES-256. Should be passed as a string with delimiter ';'
- channelEncryption
- String
SMB channel encryption supported by server. Valid values are AES-128-CCM, AES-128-GCM, AES-256-GCM. Should be passed as a string with delimiter ';'.
Applies to
Azure SDK for .NET