Sdílet prostřednictvím


FormsAuthenticationConfiguration.Path Vlastnost

Definice

Získá nebo nastaví cestu k souboru 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

Hodnota vlastnosti

String

Cesta k souboru cookie HTTP, který se má použít k ověřování. Výchozí hodnota je lomítko (/), které představuje kořen webové aplikace.

Atributy

Příklady

Následující příklad kódu ukazuje, jak získat přístup k Path vlastnosti. V příkladu kódu v tématu předmětu FormsAuthenticationConfiguration se dozvíte, jak získat oddíl.

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

Poznámky

Vlastnost Path označuje, kde se nachází soubor cookie ověřování a je přenášen spolu se samotným ověřovacím souborem cookie.

Platí pro

Viz také