PassportAuthentication クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
注意事項
This type is obsolete. The Passport authentication product is no longer supported and has been superseded by Live ID.
ASP.NET アプリケーションで Passport ベース認証を構成します。
public ref class PassportAuthentication sealed : System::Configuration::ConfigurationElement
public sealed class PassportAuthentication : System.Configuration.ConfigurationElement
[System.Obsolete("This type is obsolete. The Passport authentication product is no longer supported and has been superseded by Live ID.")]
public sealed class PassportAuthentication : System.Configuration.ConfigurationElement
type PassportAuthentication = class
inherit ConfigurationElement
[<System.Obsolete("This type is obsolete. The Passport authentication product is no longer supported and has been superseded by Live ID.")>]
type PassportAuthentication = class
inherit ConfigurationElement
Public NotInheritable Class PassportAuthentication
Inherits ConfigurationElement
- 継承
- 属性
例
次のコード例は、既存の Web アプリケーションの PassportAuthentication 構成ファイルから オブジェクトを取得する方法を示しています。 構成例も示されています。
<authentication>
<passport redirectUrl="Login.aspx"/>
</authentication>
// Get the configuration.
// Get the Web application configuration.
System.Configuration.Configuration configuration = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("/aspnetTest");
// Get the section.
System.Web.Configuration.AuthenticationSection authenticationSection = (System.Web.Configuration.AuthenticationSection)configuration.GetSection("system.web/authentication");
// Get the authentication passport element.
PassportAuthentication passport = authenticationSection.Passport;
' Get the configuration.
Dim configuration As System.Configuration.Configuration = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("/aspnetTest")
' Get the authentication section.
Dim authenticationSection As System.Web.Configuration.AuthenticationSection = CType(configuration.GetSection("system.web/authentication"), System.Web.Configuration.AuthenticationSection)
' Get the authentication passport element.
Dim passport As PassportAuthentication = authenticationSection.Passport
注釈
PassportAuthenticationクラスを使用すると、タグによって識別される Machine.config または Web.config 構成ファイル内のノードにpassport
アクセスして構成できます。
この型は、、FormsAuthenticationConfiguration、および AuthenticationMode 型を含むグループのAuthenticationSection一部です。
注意
クラスは PassportAuthentication 、コンピューター、サイト、またはアプリケーション レベルでのみ、構成ファイルの関連セクションに情報を書き込むことができます。 階層内の別のレベルで構成ファイルに書き込もうとすると、パーサーによってエラー メッセージが生成されます。 このクラスを使用すると、階層内の任意のレベルで構成情報を読み取ることができます。
コンストラクター
PassportAuthentication() |
古い.
PassportAuthentication クラスの新しいインスタンスを初期化します。 |
プロパティ
メソッド
適用対象
こちらもご覧ください
.NET