FormsAuthenticationConfiguration.Path Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta il percorso del 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
Valore della proprietà
Percorso del cookie HTTP da utilizzare per l'autenticazione. Il valore predefinito è una barra (/), che rappresenta la directory radice dell'applicazione Web.
- Attributi
Esempio
Nell'esempio di codice seguente viene illustrato come accedere alla proprietà Path. Fare riferimento all'esempio di codice nell'argomento della FormsAuthenticationConfiguration classe per informazioni su come ottenere la sezione .
// 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"
Commenti
La Path proprietà indica dove risiede il cookie di autenticazione e viene trasmesso insieme al cookie di autenticazione stesso.