FormsAuthenticationConfiguration.Path 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 chemin d'accès du cookie.
public:
property System::String ^ Path { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("path", DefaultValue="/")]
[System.Configuration.StringValidator(MinLength=1)]
public string Path { get; set; }
[<System.Configuration.ConfigurationProperty("path", DefaultValue="/")>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Path : string with get, set
Public Property Path As String
Valeur de propriété
Chemin d'accès du cookie HTTP à utiliser pour l'authentification. La valeur par défaut est une barre oblique (/) qui représente la racine de l'application Web.
- Attributs
Exemples
L'exemple de code suivant illustre l'accès à la propriété Path. Reportez-vous à l’exemple de code de la FormsAuthenticationConfiguration rubrique de classe pour savoir comment obtenir la section.
// Get the current Path.
string currentPath = formsAuthentication.Path;
// Set the Path property.
formsAuthentication.Path = "newPath";
' Get the current Path.
Dim currentPath As String = formsAuthentication.Path
' Set the Path property.
formsAuthentication.Path = "newPath"
Remarques
La Path propriété indique où réside le cookie d’authentification et est transmise avec le cookie d’authentification lui-même.