FormsAuthenticationConfiguration.Name Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le nom du cookie.
public:
property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("name", DefaultValue=".ASPXAUTH")]
[System.Configuration.StringValidator(MinLength=1)]
public string Name { get; set; }
[<System.Configuration.ConfigurationProperty("name", DefaultValue=".ASPXAUTH")>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Name : string with get, set
Public Property Name As String
Valeur de propriété
Nom du cookie HTTP à utiliser pour l'authentification des demandes.
- Attributs
Exemples
L’exemple de code suivant montre comment accéder à la propriété Reportez-vous à l’exemple Name de code dans la FormsAuthenticationConfiguration rubrique de classe pour découvrir comment obtenir la section.
// Get the configuration file. Replace the name configTarget
// with the name of your site.
System.Configuration.Configuration configuration =
WebConfigurationManager.OpenWebConfiguration("/configTarget");
// Get the external Authentication section.
AuthenticationSection authenticationSection =
(AuthenticationSection)configuration.GetSection(
"system.web/authentication");
// Get the external Forms section .
FormsAuthenticationConfiguration formsAuthentication =
authenticationSection.Forms;
string cookieName = formsAuthentication.Name;
' Get the configuration file. Replace the name configTarget
' with the name of your site.
Dim configuration As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration("/configTarget")
' Get the authentication section.
Dim authenticationSection As AuthenticationSection = _
CType(configuration.GetSection("system.web/authentication"), AuthenticationSection)
' Get the external Forms section .
Dim formsAuthentication As FormsAuthenticationConfiguration = _
authenticationSection.Forms
Dim cookieName As String = formsAuthentication.Name