IdentitySection 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定 Web 應用程式的識別 (Identity)。 此類別無法獲得繼承。
public ref class IdentitySection sealed : System::Configuration::ConfigurationSection
public sealed class IdentitySection : System.Configuration.ConfigurationSection
type IdentitySection = class
inherit ConfigurationSection
Public NotInheritable Class IdentitySection
Inherits ConfigurationSection
- 繼承
範例
下列程式代碼範例示範如何從現有 Web 應用程式的組態檔取得 IdentitySection 物件。
// Get the Web application configuration.
System.Configuration.Configuration configuration = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("/aspnetTest");
// Get the section.
System.Web.Configuration.IdentitySection identitySection = (System.Web.Configuration.IdentitySection)configuration.GetSection("system.web/identity");
' Get the Web application configuration.
Dim configuration As System.Configuration.Configuration = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("/aspnetTest")
' Get the section.
Dim identitySection As System.Web.Configuration.IdentitySection = CType(configuration.GetSection("system.web/identity"), System.Web.Configuration.IdentitySection)
備註
IdentitySection提供一種方式,以程式設計方式存取和修改identity
組態檔的 區段。
注意
IdentitySection可以根據值為 Everywhere的 section 屬性AllowDefinition,從 組態檔的相關區段讀取和寫入資訊。
建構函式
IdentitySection() |
使用預設參數,初始化 IdentitySection 類別的新執行個體。 |