共用方式為


SPWeb.AnonymousState property

取得或設定適用於匿名使用者的存取層級,在網站上。

Namespace:  Microsoft.SharePoint
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'宣告
Public Property AnonymousState As SPWeb.WebAnonymousState
    Get
    Set
'用途
Dim instance As SPWeb
Dim value As SPWeb.WebAnonymousState

value = instance.AnonymousState

instance.AnonymousState = value
public SPWeb.WebAnonymousState AnonymousState { get; set; }

Property value

Type: Microsoft.SharePoint.SPWeb.WebAnonymousState
指定的存取層級的SPWeb.WebAnonymousState值。如果您將值設定為WebAnonymousState.On時, AnonymousPermMask64屬性的值會取決於有限的存取角色的權限遮罩。

Examples

下列程式碼範例可讓匿名使用者存取清單和文件庫在網站上。

Using webSite As SPWeb = SPContext.Current.Site.OpenWeb("MyWebSite")
    webSite.AnonymousState = SPWeb.WebAnonymousState.Enabled
End Using
using (SPWeb oWebsite = SPContext.Current.Site.OpenWeb("MyWebSite"))
{
    oWebsite.AnonymousState = SPWeb.WebAnonymousState.Enabled;
}
注意事項注意事項

某些物件實作IDisposable介面,並且您必須避免之後不再需要保留這些物件在記憶體中。良好的程式碼撰寫方式的相關資訊,請參閱Disposing Objects

請參閱

參照

SPWeb class

SPWeb members

Microsoft.SharePoint namespace