WindowsServiceCredential.IncludeWindowsGroups Eigenschaft

Definition

Dient zum Abrufen oder Festlegen eines Werts, der angibt, ob die Windows-Gruppen, zu denen ein Client gehört, im Sicherheitskontext enthalten sind.

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

Eigenschaftswert

true, wenn Windows Gruppen im Sicherheitskontext enthalten sind; andernfalls false. Der Standardwert lautet true.

Beispiele

Der folgende Code zeigt, wie Sie diese Eigenschaft abrufen.

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

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

// Add an endpoint.
sh.AddServiceEndpoint(typeof(ICalculator), b, "WindowsCalculator");

// Get a reference to the WindowsServiceCredential object.
WindowsServiceCredential winCredential =
    sh.Credentials.WindowsAuthentication;
// Print out values.
Console.WriteLine("IncludeWindowsGroup: {0}",
    winCredential.IncludeWindowsGroups);
Console.WriteLine("UserNamePasswordValidationMode: {0}",
    winCredential.AllowAnonymousLogons);

Console.ReadLine();
' 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 WindowsServiceCredential.
Dim b As New WSHttpBinding(SecurityMode.Message)
b.Security.Message.ClientCredentialType = MessageCredentialType.Windows

' Add an endpoint.
sh.AddServiceEndpoint(GetType(ICalculator), b, "WindowsCalculator")

' Get a reference to the WindowsServiceCredential object.
Dim winCredential As WindowsServiceCredential = sh.Credentials.WindowsAuthentication
' Print out values.
Console.WriteLine("IncludeWindowsGroup: {0}", winCredential.IncludeWindowsGroups)
Console.WriteLine("UserNamePasswordValidationMode: {0}", winCredential.AllowAnonymousLogons)

Console.ReadLine()

Hinweise

In den meisten Szenarien bietet das Wissen, zu welchen Windows Gruppen Benutzer gehören, nützliche Informationen für Autorisierungsentscheidungen. Wenn die Windows-Gruppen jedoch nicht erforderlich sind, kann das Festlegen dieser Eigenschaft auf false die Leistung verbessern, indem eine Anspruchsgesamtheit vollständiger Gruppen vermieden wird.

Gilt für: