ActiveDirectoryConnectionProtection Enumeração

Definição

Especifica as opções de proteção de conexão com suporte pela classe ActiveDirectoryMembershipProvider.Specifies the connection protection options supported by the ActiveDirectoryMembershipProvider class.

public enum class ActiveDirectoryConnectionProtection
public enum ActiveDirectoryConnectionProtection
type ActiveDirectoryConnectionProtection = 
Public Enum ActiveDirectoryConnectionProtection
Herança
ActiveDirectoryConnectionProtection

Campos

None 0

Nenhuma segurança de camada de transporte é usada.No transport layer security is used. As credenciais explícitas para a conexão do Active Directory devem ser fornecidas no arquivo de configuração.Explicit credentials for the Active Directory connection must be provided in the configuration file.

SignAndSeal 2

A conexão com o servidor Active Directory é protegida assinando digitalmente e criptografando cada pacote enviado para o servidor.The connection to the Active Directory server is secured by digitally signing and encrypting each packet sent to the server.

Ssl 1

Uma conexão SSL é usada para se conectar ao servidor do Active Directory.An SSL connection is used to connect to the Active Directory server.

Comentários

A ActiveDirectoryConnectionProtection enumeração é usada no arquivo de configuração de um aplicativo para definir o protocolo usado para proteger as comunicações entre um ActiveDirectoryMembershipProvider objeto e um Active Directory ou Active Directory servidor de modo de aplicativo.The ActiveDirectoryConnectionProtection enumeration is used in an application's configuration file to set the protocol used to secure communications between an ActiveDirectoryMembershipProvider object and an Active Directory or Active Directory Application Mode server. A enumeração indica o tipo de segurança de conexão que o provedor estabeleceu com base no connectionProtection atributo do elemento de configuração do elemento de associação (esquema de configurações ASP.net) .The enumeration indicates the type of connection security the provider established based on the connectionProtection attribute of the membership Element (ASP.NET Settings Schema) configuration element. O connectionProtection atributo pode ser definido somente como "None" ou "Secure".The connectionProtection attribute can be set only to either "None" or "Secure".

Aplica-se a