Udostępnij za pośrednictwem


X509ClientCertificateAuthentication.MapClientCertificateToWindowsAccount Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą, czy certyfikat jest mapowany na konta 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

Wartość właściwości

Boolean

truejeśli certyfikat jest mapowany na konta Windows; w przeciwnym razie . false Wartość domyślna to false.

Wyjątki

set gdy poświadczenie jest tylko do odczytu.

Przykłady

Poniższy kod pokazuje, jak ustawić tę właściwość.

// 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

Właściwość można również ustawić w pliku konfiguracji.

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

Uwagi

W przypadku używania typu poświadczeń klienta certyfikatu w powiązaniach certyfikat nie jest mapowany na konta Windows. To zachowanie można zastąpić przy użyciu tej właściwości. Gdy ta właściwość jest ustawiona na truewartość , powoduje mapowanie tożsamości z certyfikatu klienta na konto Windows.

Dotyczy