RoleProvider.ApplicationName Property

Definition

Gets or sets the name of the application to store and retrieve role information for.

C#
public abstract string ApplicationName { get; set; }

Property Value

The name of the application to store and retrieve role information for.

Examples

The following code example shows a sample implementation of the ApplicationName property.

C#
private string pApplicationName;

public override string ApplicationName
{
  get { return pApplicationName; }
  set { pApplicationName = value; }
}

Remarks

The ApplicationName is used by the Roles class to associate users and roles with different applications. This enables multiple applications to use the same database to store user and role information without running into conflicts between duplicate user names or role names. Multiple ASP.NET applications can use the same database by specifying the same value in the ApplicationName property. The ApplicationName property can be set programmatically, or it can be set declaratively in the configuration file for the Web application using the applicationName attribute.

If no ApplicationName property is specified, we recommend that the ApplicationVirtualPath property value be used.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also