WindowsServiceElement.AllowAnonymousLogons Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.