Freigeben über


AnonymousIdentificationSection.CookiePath Eigenschaft

Definition

Ruft den Pfad ab, unter dem das Cookie gespeichert wird, oder legt diesen fest.

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

Eigenschaftswert

Der Pfad des HTTP-Cookies, das für die anonyme Identifizierung des Benutzers verwendet werden soll. Der Standardwert ist ein Schrägstrich (/), der das Stammverzeichnis der Webanwendung darstellt.

Attribute

Beispiele

Im folgenden Codebeispiel wird der Zugriff auf die CookiePath-Eigenschaft veranschaulicht.

// 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)

Hinweise

Die CookiePath -Eigenschaft gibt an, wo sich das Authentifizierungscooky befindet und wird zusammen mit dem Authentifizierungscooky selbst übertragen.

Gilt für: