Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
 ApplicationName Property
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
MembershipProvider..::.ApplicationName Property

Updated: November 2007

The name of the application using the custom membership provider.

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

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;
}
J#
/** @property */
public abstract String get_ApplicationName()
/** @property */
public abstract  void set_ApplicationName(String value)
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.

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.

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

Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, 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.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Documentation Confusion...no default behavior on Application Property.      Shawn Wildermuth ... Noelle Mallory - MSFT   |   Edit   |  

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.

Processing
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker