Freigeben über


FormsAuthenticationConfiguration.Path Eigenschaft

Definition

Ruft den Cookiepfad ab oder legt diesen fest.

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

Eigenschaftswert

String

Der Pfad des für die Authentifizierung zu verwendenden HTTP-Cookies. Der Standardwert ist ein Schrägstrich (/), der das Stammverzeichnis der Webanwendung darstellt.

Attribute

Beispiele

Im folgenden Codebeispiel wird der Zugriff auf die Path-Eigenschaft veranschaulicht. Weitere Informationen zum Abrufen des Abschnitts finden Sie im Codebeispiel im FormsAuthenticationConfiguration Klassenthema.

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

Hinweise

Die Path Eigenschaft gibt an, wo sich das Authentifizierungscookies befindet und zusammen mit dem Authentifizierungscookies selbst übertragen wird.

Gilt für

Siehe auch