Compartilhar via


FormsAuthenticationConfiguration.Path Propriedade

Definição

Obtém ou define o caminho do 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

Valor da propriedade

String

O caminho do cookie HTTP a ser usado para autenticação. O valor padrão é uma barra (/), que representa a raiz do aplicativo Web.

Atributos

Exemplos

O exemplo de código a seguir mostra como acessar a Path propriedade. Consulte o exemplo de código no tópico de FormsAuthenticationConfiguration classe para saber como obter a seção.

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

Comentários

A Path propriedade indica onde o cookie de autenticação reside e é transmitido junto com o próprio cookie de autenticação.

Aplica-se a

Confira também