Share via


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

屬性值

要用於要求驗證之 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

適用於