共用方式為


WindowsServiceCredential.AllowAnonymousLogons 屬性

定義

取得或設定值,這個值表示是否允許匿名使用者存取 (僅適用於訊息層級安全性)。

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

屬性值

如果允許匿名使用者存取則為 true,否則為 false。 預設為 false

範例

下列程式碼會示範如何取得這個屬性。

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

備註

當使用繫結上的 Windows 用戶端認證時,系統預設為不允許匿名存取。 這表示只允許經過網域或工作群組驗證的使用者存取系統。 但是在某些情況中,它也接受匿名、未經驗證的使用者存取服務。 在這個情況中,您可以將這個屬性設定為 true,以允許匿名用戶端呼叫服務。 可匿名驗證的服務會大幅放寬安全性規定,因此請謹慎使用這個設定。

請注意,這個屬性不適用於傳輸安全性案例,只適用於基礎繫結使用訊息安全性來保護訊息安全的情況。 如果使用 Windows 傳輸安全性,則此屬性不適用。

適用於