SPWeb.AnonymousState property
SharePoint 2013
Gets or sets the level of access for anonymous users on the website.
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
[SubsetCallableExcludeMemberAttribute(SubsetCallableExcludeMemberType.PerSpec)] public SPWeb.WebAnonymousState AnonymousState { get; set; }
Property value
Type: Microsoft.SharePoint.SPWeb.WebAnonymousStateAn SPWeb.WebAnonymousState value that specifies the level of access. If you set the value to WebAnonymousState.On, the value of the AnonymousPermMask64 property depends on the permission mask for the Limited Access role.
The following code example gives anonymous users access to lists and libraries on the site.
using (SPWeb oWebsite = SPContext.Current.Site.OpenWeb("MyWebSite")) { oWebsite.AnonymousState = SPWeb.WebAnonymousState.Enabled; }
Note |
|---|
Certain objects implement the IDisposable interface, and you must avoid retaining these objects in memory after they are no longer needed. For information about good coding practices, see Disposing Objects. |
Note