AnonymousIdentificationEventHandler 代理人
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
AnonymousIdentificationModule の AnonymousIdentification_Creating イベントを処理するメソッドを表します。
public delegate void AnonymousIdentificationEventHandler(System::Object ^ sender, AnonymousIdentificationEventArgs ^ e);
public delegate void AnonymousIdentificationEventHandler(object sender, AnonymousIdentificationEventArgs e);
type AnonymousIdentificationEventHandler = delegate of obj * AnonymousIdentificationEventArgs -> unit
Public Delegate Sub AnonymousIdentificationEventHandler(sender As Object, e As AnonymousIdentificationEventArgs)
パラメーター
- sender
- Object
イベントのソース。
イベント データを格納している AnonymousIdentificationEventArgs。
例
次のコード例では、 AnonymousIdentification_Creating イベントを使用して匿名識別子をカスタム値に設定します。
public void AnonymousIdentification_Creating(object sender,
AnonymousIdentificationEventArgs args)
{
args.AnonymousID = Samples.AspNet.Security.MyIdClass.GetAnonymousId();
Samples.AspNet.Security.MyIdClass.LogAnonymousId(args.AnonymousID);
}
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
注釈
デリゲートは AnonymousIdentificationEventHandler 、 クラスの イベントに対して Creating 定義されます AnonymousIdentificationModule 。 クラスの イベントに Creating アクセスするには、ASP.NET アプリケーションの AnonymousIdentificationModule Global.asax ファイルで AnonymousIdentification_Creating という名前のサブルーチンを指定します。 イベントは Creating 、イベント中に発生します PostAuthenticateRequest 。
はAnonymousIdentificationModule、現在HttpContextの をAnonymousIdentificationEventArgs使用して オブジェクトを構築し、AnonymousIdentification_Creating イベントに渡します。
匿名識別子をAnonymousIDカスタム値に設定するには、AnonymousIdentification_Creating イベントに指定された オブジェクトの プロパティAnonymousIdentificationEventArgsを使用できます。 AnonymousIdentification_Creating イベント中に プロパティのAnonymousID値を指定しない場合は、 Guid が使用されます。
AnonymousIdentification_Creating イベントは、匿名 ID が Enabled anonymousIdentification> 構成要素を <にtrue
設定した場合にのみ発生します。
拡張メソッド
GetMethodInfo(Delegate) |
指定したデリゲートによって表されるメソッドを表すオブジェクトを取得します。 |
適用対象
.NET