AnonymousIdentificationEventHandler デリゲートとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > AnonymousIdentificationEventHandler デリゲートの意味・解説 

AnonymousIdentificationEventHandler デリゲート

メモ : このデリゲートは、.NET Framework version 2.0新しく追加されたものです。

AnonymousIdentificationModule の AnonymousIdentification_Creating イベント処理するメソッド表します

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

Public Delegate Sub AnonymousIdentificationEventHandler
 ( _
    sender As Object, _
    e As AnonymousIdentificationEventArgs _
)
Dim instance As New AnonymousIdentificationEventHandler(AddressOf
 HandlerMethod)
public delegate void AnonymousIdentificationEventHandler
 (
    Object sender,
    AnonymousIdentificationEventArgs e
)
public delegate void AnonymousIdentificationEventHandler
 (
    Object^ sender, 
    AnonymousIdentificationEventArgs^ e
)
/** @delegate */
public delegate void AnonymousIdentificationEventHandler
 (
    Object sender, 
    AnonymousIdentificationEventArgs e
)
JScript では、デリゲート使用できますが、新規に宣言することはできません。

パラメータ

sender

イベントソース

e

イベント データ格納している AnonymousIdentificationEventArgs。

解説解説

AnonymousIdentificationEventHandler デリゲートは、AnonymousIdentificationModule クラスの Creating イベントに対して定義されています。AnonymousIdentificationModule クラスCreating イベントには、ASP.NET アプリケーションの Global.asax ファイルに、AnonymousIdentification_Creating というサブルーチン指定することによってアクセスできますCreating イベントは、PostAuthenticateRequest イベント時に生成されます。

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

AnonymousIdentification_Creating イベント渡した AnonymousIdentificationEventArgs オブジェクトの AnonymousId プロパティ使用して匿名 IDカスタム値に設定できますAnonymousIdentification_Creating イベント時に AnonymousId プロパティに値を指定しなかった場合は、Guid使用されます。

AnonymousIdentification_Creating イベントは、anonymousIdentification 構成要素true設定することにより、匿名 IDEnabled である場合にだけ発生します

使用例使用例

AnonymousIdentification_Creating イベント使用して匿名 IDカスタム値に設定するコード例次に示します

Public Sub AnonymousIdentification_Creating(sender
 As Object,  _
                                            args As AnonymousIdentificationEventArgs)
  args.AnonymousID = Samples.AspNet.Security.MyIdClass.GetAnonymousId()
  Samples.AspNet.Security.MyIdClass.LogAnonymousId(args.AnonymousId)
End Sub
public void AnonymousIdentification_Creating(object
 sender, 
                                             AnonymousIdentificationEventArgs args)
{
  args.AnonymousID = Samples.AspNet.Security.MyIdClass.GetAnonymousId();
  Samples.AspNet.Security.MyIdClass.LogAnonymousId(args.AnonymousID);
}
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
System.Web.Security 名前空間
その他の技術情報
anonymousIdentification 要素 (ASP.NET 設定スキーマ)
Global.asax 構文


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

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

辞書ショートカット

すべての辞書の索引

AnonymousIdentificationEventHandler デリゲートのお隣キーワード
検索ランキング

   

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



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

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

©2025 GRAS Group, Inc.RSS