Partager via


AnonymousIdentificationSection.CookiePath Propriété

Définition

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.

S’applique à