WindowsServiceElement.AllowAnonymousLogons Property

Definition

Gets or sets a Boolean value that specifies whether anonymous users can logon.

public:
 property bool AllowAnonymousLogons { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("allowAnonymousLogons", DefaultValue=false)]
public bool AllowAnonymousLogons { get; set; }
[<System.Configuration.ConfigurationProperty("allowAnonymousLogons", DefaultValue=false)>]
member this.AllowAnonymousLogons : bool with get, set
Public Property AllowAnonymousLogons As Boolean

Property Value

true if anonymous users can logon; otherwise, false. The default is false.

Attributes

Remarks

When using Windows service credentials on a binding, the system does not allow anonymous access by default. This means that only domain or workgroup authenticated users have access to the system. You can use this property to allow anonymous, unauthenticated users to access the service. You should exercise caution when using this setting.

Applies to