AnonymousIdentificationEventHandler 代理人

定義

AnonymousIdentificationModuleAnonymousIdentification_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

イベントのソース。

e
AnonymousIdentificationEventArgs

イベント データを格納している 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)

指定したデリゲートによって表されるメソッドを表すオブジェクトを取得します。

適用対象