AuthorizationStoreRoleProvider.ScopeName 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 the scope name for the authorization store.
public:
property System::String ^ ScopeName { System::String ^ get(); void set(System::String ^ value); };
public string ScopeName { get; set; }
member this.ScopeName : string with get, set
Public Property ScopeName As String
Property Value
The scope name for the authorization store.
Remarks
The ScopeName property can be set using the scopeName
configuration attribute for the provider instance in the providers
section of the roleManager
configuration section.
Caution
Because a single default role provider instance is used for all of the requests served by an HttpApplication object, you can have multiple requests executing concurrently and attempting to set the ScopeName property value. The ScopeName property is not thread safe for multiple writes, and changing the ScopeName property value can result in unexpected behavior when there are multiple users of an application. We recommend that you avoid writing code that allows users to set the ScopeName property unless you must. An example of an application where setting the ScopeName property may be required is an administrative application that manages role data for multiple applications. Such an application should be a single-user application and not a Web application.