AuthorizationStoreRoleProvider::ScopeName Property

 

Gets or sets the scope name for the authorization store.

Namespace:   System.Web.Security
Assembly:  System.Web (in System.Web.dll)

public:
property String^ ScopeName {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The scope name for the authorization store.

The ScopeName property can be set using the scopeName configuration attribute for the provider instance in the providers section of the configuration section.

System_CAPS_cautionCaution

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.

.NET Framework
Available since 2.0
Return to top
Show: