.NET Framework Class Library
MembershipProvider..::.ApplicationName Property

The name of the application using the custom membership provider.

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

Visual Basic (Declaration)
Public MustOverride Property ApplicationName As String
Visual Basic (Usage)
Dim instance As MembershipProvider
Dim value As String

value = instance.ApplicationName

instance.ApplicationName = value
C#
public abstract string ApplicationName { get; set; }
Visual C++
public:
virtual property String^ ApplicationName {
    String^ get () abstract;
    void set (String^ value) abstract;
}
JScript
public abstract function get ApplicationName () : String
public abstract function set ApplicationName (value : String)

Property Value

Type: System..::.String
The name of the application using the custom membership 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.

Examples

For an example of a MembershipProvider implementation, see Implementing a Profile Provider.

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0
See Also

Reference

Other Resources

Tags :


Community Content

Noelle Mallory - MSFT
Documentation Confusion...no default behavior on Application Property.

It says:

"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."

Which can't be true as its an abstract (MustInherit) property so there is no 'default' behavior. I assume that you mean to say, that if you don't have an application name, you should use the ApplicationPath.

Tags : contentbug

Page view tracker