FormsAuthenticationConfiguration.Path 属性

定义

获取或设置 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

属性值

String

要用于身份验证的 HTTP Cookie 的路径。 默认值为斜杠 (/),表示 Web 应用程序的根。

属性

示例

下面的代码示例演示如何访问 Path 属性。 请参阅类主题中的 FormsAuthenticationConfiguration 代码示例,了解如何获取该部分。

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

注解

Path 属性指示身份验证 Cookie 所在的位置,并随身份验证 Cookie 本身一起传输。

适用于

另请参阅