FormsAuthenticationModule.Authenticate イベント
アセンブリ: System.Web (system.web.dll 内)

Dim instance As FormsAuthenticationModule Dim handler As FormsAuthenticationEventHandler AddHandler instance.Authenticate, handler
public: event FormsAuthenticationEventHandler^ Authenticate { void add (FormsAuthenticationEventHandler^ value); void remove (FormsAuthenticationEventHandler^ value); }

Authenticate イベントは、AuthenticateRequest イベント時に生成されます。
FormsAuthenticationModule クラスの Authenticate イベントは、ASP.NET アプリケーションの Global.asax ファイルに、FormsAuthentication_OnAuthenticate というサブルーチンを指定することによって処理できます。
FormsAuthentication_OnAuthenticate イベントに渡した FormsAuthenticationEventArgs の User プロパティを使用して、現在の HttpContext の User プロパティを、カスタムの IPrincipal オブジェクトに設定できます。FormsAuthentication_OnAuthenticate イベント中に User プロパティ値を指定しない場合、Cookie または URL 内のフォーム認証チケットによって提供される ID が使用されます。
FormsAuthentication_OnAuthenticate イベントは、アプリケーションの構成ファイルの authentication 要素 (ASP.NET 設定スキーマ) 要素で認証モードが Forms に設定されていて、FormsAuthenticationModule がアプリケーションのアクティブな HTTP モジュールである場合にのみ発生します。

FormsAuthentication_OnAuthenticate イベントを使用して、現在の HttpContext の User プロパティにカスタム Identity を持つ GenericPrincipal オブジェクトを設定するコード例を次に示します。
Public Sub FormsAuthentication_OnAuthenticate(sender As Object, _ args As FormsAuthenticationEventArgs) If FormsAuthentication.CookiesSupported Then If Not Request.Cookies(FormsAuthentication.FormsCookieName) Is Nothing Then Try Dim ticket As FormsAuthenticationTicket = FormsAuthentication.Decrypt( _ Request.Cookies(FormsAuthentication.FormsCookieName).Value) args.User = New System.Security.Principal.GenericPrincipal( _ New Samples.AspNet.Security.MyFormsIdentity(ticket), _ New String(0) {}) Catch e As HttpException ' Decrypt method failed. End Try End If Else Throw New Exception("Cookieless Forms Authentication is not " & _ "supported for this application.") End If End Sub
public void FormsAuthentication_OnAuthenticate(object sender, FormsAuthenticationEventArgs args) { if (FormsAuthentication.CookiesSupported) { if (Request.Cookies[FormsAuthentication.FormsCookieName] != null) { try { FormsAuthenticationTicket ticket = FormsAuthentication.Decrypt( Request.Cookies[FormsAuthentication.FormsCookieName].Value); args.User = new System.Security.Principal.GenericPrincipal( new Samples.AspNet.Security.MyFormsIdentity(ticket) , new string[0]); } catch (Exception e) { // Decrypt method failed. } } } else { throw new HttpException("Cookieless Forms Authentication is not " + "supported for this application."); } }

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からFormsAuthenticationModule.Authenticate イベントを検索する場合は、下記のリンクをクリックしてください。

- FormsAuthenticationModule.Authenticate イベントのページへのリンク