WebPartPersonalization.CanEnterSharedScope 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.
Returns a value indicating whether the user is authorized to enter Shared scope.
public:
property bool CanEnterSharedScope { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool CanEnterSharedScope { get; }
[<System.ComponentModel.Browsable(false)>]
member this.CanEnterSharedScope : bool
Public ReadOnly Property CanEnterSharedScope As Boolean
Property Value
true
if the user is authorized to enter Shared scope; otherwise, false
.
- Attributes
Examples
The following code demonstrates using the CanEnterSharedScope property. This code is part of a larger code sample found in the WebPartPersonalization class description.
// Allows authorized user to change personalization scope.
protected void Toggle_Scope_Button_Click(object sender, EventArgs e)
{
if (_manager.Personalization.CanEnterSharedScope)
{
_manager.Personalization.ToggleScope();
}
}
' Allows authorized user to change personalization scope.
Protected Sub Toggle_Scope_Button_Click(ByVal sender As Object, ByVal e As EventArgs)
If _manager.Personalization.CanEnterSharedScope Then
_manager.Personalization.ToggleScope()
End If
End Sub 'Toggle_Scope_Button_Click
Remarks
This property returns true
if the user is authorized in the WebPartUserCapability to enter Shared scope.
The first time the property is called, it determines the user's right to enter Shared scope and caches the information. If the UserCapabilities dictionary is modified after the first time this property is called, changes are not shown on subsequent calls to this property.