Udostępnij za pośrednictwem


FormsAuthenticationConfiguration.Path Właściwość

Definicja

Pobiera lub ustawia ścieżkę pliku 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

Wartość właściwości

String

Ścieżka pliku cookie HTTP do użycia do uwierzytelniania. Wartość domyślna to ukośnik (/), który reprezentuje katalog główny aplikacji internetowej.

Atrybuty

Przykłady

Poniższy przykład kodu pokazuje, jak uzyskać dostęp Path do właściwości. Zapoznaj się z przykładem kodu w temacie klasy, FormsAuthenticationConfiguration aby dowiedzieć się, jak uzyskać sekcję.

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

Uwagi

Właściwość Path wskazuje, gdzie znajduje się plik cookie uwierzytelniania i jest przesyłany wraz z samym plikiem cookie uwierzytelniania.

Dotyczy

Zobacz też