MembershipProvider.ApplicationName 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.
The name of the application using the custom membership provider.
public:
abstract property System::String ^ ApplicationName { System::String ^ get(); void set(System::String ^ value); };
public abstract string ApplicationName { get; set; }
member this.ApplicationName : string with get, set
Public MustOverride Property ApplicationName As String
Property Value
The name of the application using the custom membership provider.
Examples
For an example of a MembershipProvider implementation, see Implementing a Profile Provider.
Remarks
The ApplicationName property value is stored in the data source with related user information to associate a user with a particular application. This property is read/write and defaults to the ApplicationPath property value if not specified explicitly.
Because membership providers store user information uniquely for each application, multiple ASP.NET applications can use the same data source without running into a conflict if duplicate user names are created. Alternatively, multiple ASP.NET applications can use the same user data source by specifying the same ApplicationName.
In your membership provider implementation, you will need to ensure that your data schema includes the ApplicationName and that data source queries and updates also include the ApplicationName.