Udostępnij za pośrednictwem


X509ClientCertificateAuthentication.IncludeWindowsGroups Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą, czy grupy Windows są uwzględnione w kontekście autoryzacji.

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

Wartość właściwości

Boolean

truejeśli Windows grupy są uwzględnione w kontekście autoryzacji; w przeciwnym razie . false Wartość domyślna to true.

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 a certificate.
WSHttpBinding b = new WSHttpBinding(SecurityMode.Message);
b.Security.Message.ClientCredentialType =
    MessageCredentialType.Certificate;

// 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 a certificate.
Dim b As New WSHttpBinding(SecurityMode.Message)
b.Security.Message.ClientCredentialType = MessageCredentialType.Certificate


' 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 includeWindowsGroups ='true'/>  
  </clientCertificate>  
</serviceCredentials>  

Uwagi

Ta właściwość jest prawidłowa tylko wtedy, gdy właściwość jest ustawiona MapClientCertificateToWindowsAccount na truewartość .

Ustaw tę właściwość na false wartość tylko wtedy, gdy nie musisz ustanawiać listy grup, do których należy użytkownik — może to spowodować korzyść z wydajności, jeśli aplikacja i decyzje dotyczące autoryzacji nie wymagają Windows grup.

Dotyczy