AnonymousIdentificationSection.CookiePath 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 l'emplacement de stockage du cookie.
public:
property System::String ^ CookiePath { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("cookiePath", DefaultValue="/")]
[System.Configuration.StringValidator(MinLength=1)]
public string CookiePath { get; set; }
[<System.Configuration.ConfigurationProperty("cookiePath", DefaultValue="/")>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.CookiePath : string with get, set
Public Property CookiePath As String
Valeur de propriété
Chemin d'accès du cookie HTTP à utiliser pour l'identification anonyme de l'utilisateur. 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é CookiePath.
// Get CookiePath.
string cookiePath =
anonymousIdentificationSection.CookiePath;
Console.WriteLine("Cookie path: {0}", cookiePath);
' Get CookiePath.
Dim cookiePath As String = _
anonymousIdentificationSection.CookiePath
Console.WriteLine("Cookie path: {0}", cookiePath)
Remarques
La CookiePath propriété indique où réside le cookie d’authentification et est transmis avec le cookie d’authentification lui-même.