FormsAuthenticationEventArgsとは? わかりやすく解説

FormsAuthenticationEventArgs クラス

FormsAuthentication_OnAuthenticate イベントデータ提供します。このクラス継承できません。

名前空間: System.Web.Security
アセンブリ: System.Web (system.web.dll 内)
構文構文

Public NotInheritable Class
 FormsAuthenticationEventArgs
    Inherits EventArgs
Dim instance As FormsAuthenticationEventArgs
public sealed class FormsAuthenticationEventArgs
 : EventArgs
public ref class FormsAuthenticationEventArgs
 sealed : public EventArgs
public final class FormsAuthenticationEventArgs
 extends EventArgs
public final class FormsAuthenticationEventArgs
 extends EventArgs
解説解説

FormsAuthenticationEventArgs クラスFormsAuthentication_OnAuthenticate イベントイベント値を指定し現在の要求対すカスタム ID指定できるようにするために使用されます。

FormsAuthenticationModule は、現在の HttpContext を使用して FormsAuthenticationEventArgs オブジェクト生成し、それを FormsAuthentication_OnAuthenticate イベント渡します

User プロパティ使用して現在の HttpContextUser プロパティを、カスタムの IPrincipal オブジェクト設定できます

FormsAuthentication_OnAuthenticate イベント中に User プロパティ値を指定しない場合フォーム認証チケットによって提供される Cookie または URL 内の ID使用されます。

FormsAuthentication_OnAuthenticate イベントは、認証ModeForms設定されFormsAuthenticationModuleアプリケーションアクティブ HTTP モジュールである場合にのみ生成されます。

使用例使用例

FormsAuthentication_OnAuthenticate イベント使用して現在の HttpContextUser プロパティに、カスタム 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.");
  }
}
.NET Framework のセキュリティ.NET Frameworkセキュリティ
継承階層継承階層
System.Object
   System.EventArgs
    System.Web.Security.FormsAuthenticationEventArgs
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

FormsAuthenticationEventArgs コンストラクタ

FormsAuthenticationEventArgs クラス新しインスタンス初期化します。

名前空間: System.Web.Security
アセンブリ: System.Web (system.web.dll 内)
構文構文

Public Sub New ( _
    context As HttpContext _
)
Dim context As HttpContext

Dim instance As New FormsAuthenticationEventArgs(context)
public FormsAuthenticationEventArgs (
    HttpContext context
)
public:
FormsAuthenticationEventArgs (
    HttpContext^ context
)
public FormsAuthenticationEventArgs (
    HttpContext context
)
public function FormsAuthenticationEventArgs
 (
    context : HttpContext
)

パラメータ

context

イベントコンテキスト

解説解説

FormsAuthenticationModule は、Context プロパティ値として提供される context使用して FormsAuthenticationEventArgs オブジェクト構築します。そして、FormsAuthenticationEventArgs オブジェクトFormsAuthentication_OnAuthenticate イベント渡します

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
FormsAuthenticationEventArgs クラス
FormsAuthenticationEventArgs メンバ
System.Web.Security 名前空間
その他の技術情報
フォーム認証プロバイダ

FormsAuthenticationEventArgs プロパティ


パブリック プロパティパブリック プロパティ

参照参照

関連項目

FormsAuthenticationEventArgs クラス
System.Web.Security 名前空間

その他の技術情報

フォーム認証プロバイダ

FormsAuthenticationEventArgs メソッド


FormsAuthenticationEventArgs メンバ

FormsAuthentication_OnAuthenticate イベントデータ提供します。このクラス継承できません。

FormsAuthenticationEventArgs データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド FormsAuthenticationEventArgs FormsAuthenticationEventArgs クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

FormsAuthenticationEventArgs クラス
System.Web.Security 名前空間

その他の技術情報

フォーム認証プロバイダ


このページでは「.NET Framework クラス ライブラリ リファレンス」からFormsAuthenticationEventArgsを検索した結果を表示しています。
Weblioに収録されているすべての辞書からFormsAuthenticationEventArgsを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からFormsAuthenticationEventArgs を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「FormsAuthenticationEventArgs」の関連用語

FormsAuthenticationEventArgsのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



FormsAuthenticationEventArgsのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS