X509ClientCertificateAuthentication.MapClientCertificateToWindowsAccount Propriedade

Definição

Obtém ou define um valor que indica se o certificado é mapeado para as contas do Windows.

public:
 property bool MapClientCertificateToWindowsAccount { bool get(); void set(bool value); };
public bool MapClientCertificateToWindowsAccount { get; set; }
member this.MapClientCertificateToWindowsAccount : bool with get, set
Public Property MapClientCertificateToWindowsAccount As Boolean

Valor da propriedade

Boolean

truese o certificado for mapeado para Windows contas; caso contrário, false. O padrão é false.

Exceções

set quando a credencial for somente leitura.

Exemplos

O código a seguir mostra como definir essa propriedade.

// Create a service host.
Uri httpUri = new Uri("http://localhost/Calculator");
ServiceHost sh = new ServiceHost(typeof(Calculator), httpUri);

// Create a binding that uses Windows security.
WSHttpBinding b = new WSHttpBinding(SecurityMode.Message);
b.Security.Message.ClientCredentialType = MessageCredentialType.Windows;

// Get a reference to the authentication object.
X509ClientCertificateAuthentication myAuthProperties =
    sh.Credentials.ClientCertificate.Authentication;
// Configure IncludeWindowsGroups.
myAuthProperties.IncludeWindowsGroups = true;
' Create a service host.
Dim httpUri As New Uri("http://localhost/Calculator")
Dim sh As New ServiceHost(GetType(Calculator), httpUri)

' Create a binding that uses Windows security.
Dim b As New WSHttpBinding(SecurityMode.Message)
b.Security.Message.ClientCredentialType = MessageCredentialType.Windows

' Get a reference to the authentication object.
Dim myAuthProperties As X509ClientCertificateAuthentication = _
sh.Credentials.ClientCertificate.Authentication
' Configure IncludeWindowsGroups.
myAuthProperties.IncludeWindowsGroups = True

A propriedade também pode ser definida em um arquivo de configuração.

<serviceCredentials>  
  <clientCertificate>  
     <authentication mapClientCertificateToWindowsAccount='true'/>  
  </clientCertificate>  
</serviceCredentials>  

Comentários

Ao usar o tipo de credencial do cliente de certificado em associações, o certificado não é mapeado para contas de Windows. Você pode substituir esse comportamento usando essa propriedade. Quando essa propriedade é definida como true, ela faz com que a identidade do certificado do cliente seja mapeada para uma conta de Windows.

Aplica-se a