FormsAuthenticationConfiguration.Name 属性

定义

获取或设置 Cookie 名称。

public:
 property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("name", DefaultValue=".ASPXAUTH")]
[System.Configuration.StringValidator(MinLength=1)]
public string Name { get; set; }
[<System.Configuration.ConfigurationProperty("name", DefaultValue=".ASPXAUTH")>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Name : string with get, set
Public Property Name As String

属性值

String

用于请求身份验证的 HTTP Cookie 的名称。

属性

示例

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

// Get the configuration file. Replace the name configTarget
// with the name of your site.
System.Configuration.Configuration configuration =
    WebConfigurationManager.OpenWebConfiguration("/configTarget");

// Get the external Authentication section.
AuthenticationSection authenticationSection =
    (AuthenticationSection)configuration.GetSection(
    "system.web/authentication");

// Get the external Forms section .
FormsAuthenticationConfiguration formsAuthentication =
  authenticationSection.Forms;

string cookieName = formsAuthentication.Name;

    ' Get the configuration file. Replace the name configTarget
    ' with the name of your site.
    Dim configuration As System.Configuration.Configuration = _
        WebConfigurationManager.OpenWebConfiguration("/configTarget")


    ' Get the authentication section.
    Dim authenticationSection As AuthenticationSection = _
        CType(configuration.GetSection("system.web/authentication"), AuthenticationSection)


    ' Get the external Forms section .
    Dim formsAuthentication As FormsAuthenticationConfiguration = _
        authenticationSection.Forms

    Dim cookieName As String = formsAuthentication.Name

适用于