AuthenticationSection 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定 Web 應用程式的驗證。 無法繼承這個類別。
public ref class AuthenticationSection sealed : System::Configuration::ConfigurationSection
public sealed class AuthenticationSection : System.Configuration.ConfigurationSection
type AuthenticationSection = class
inherit ConfigurationSection
Public NotInheritable Class AuthenticationSection
Inherits ConfigurationSection
- 繼承
範例
此範例示範如何使用 AuthenticationSection 類別。
// Get the Web application configuration.
System.Configuration.Configuration configuration =
WebConfigurationManager.OpenWebConfiguration(
"/aspnetTest");
// Get the authentication section.
AuthenticationSection authenticationSection =
(AuthenticationSection)configuration.GetSection(
"system.web/authentication");
' Get the Web application configuration.
Dim configuration _
As System.Configuration.Configuration = _
System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration( _
"/aspnetTest")
' Get the section.
Dim authenticationSection _
As AuthenticationSection = _
CType(configuration.GetSection( _
"system.web/authentication"), AuthenticationSection)
警告
在 [credentials
] 區段中儲存使用者認證 不安全。 請改用 Azure Key Vault。
備註
AuthenticationSection 類別可讓您以程序設計方式存取和修改組態檔的 authentication
區段。
注意
AuthenticationSection 可以根據區段屬性所定義的限制,將資訊寫入組態檔的相關區段,AllowDefinition 其值為 MachineToApplication。 在階層中不允許層級的組態檔中寫入的任何嘗試,都會導致剖析器所產生的錯誤訊息。 不過,您可以使用這個類別來讀取階層中任何層級的組態資訊。 為了安全與延展性,建議您使用外部存放庫,例如資料庫來保留用戶的認證。
建構函式
AuthenticationSection() |
初始化 AuthenticationSection 類別的新實例。 |