AnonymousIdentificationModule.Creating イベント

定義

新しい匿名識別子が作成されるときに発生します。

public:
 event System::Web::Security::AnonymousIdentificationEventHandler ^ Creating;
public event System.Web.Security.AnonymousIdentificationEventHandler Creating;
member this.Creating : System.Web.Security.AnonymousIdentificationEventHandler 
Public Custom Event Creating As AnonymousIdentificationEventHandler 

イベントの種類

次のコード例では、 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

注釈

イベントは Creating 、イベント中に発生します PostAuthenticateRequest

クラスの イベントに Creating アクセスするには、ASP.NET アプリケーションの AnonymousIdentificationModule Global.asax ファイルで AnonymousIdentification_Creating という名前のサブルーチンを指定します。

匿名識別子をAnonymousIDカスタム値に設定するには、AnonymousIdentification_Creating イベントに指定された オブジェクトの プロパティAnonymousIdentificationEventArgsを使用できます。 AnonymousIdentification_Creating イベント中に プロパティのAnonymousID値を指定しない場合はGuid が使用されます。

AnonymousIdentification_Creating イベントは、匿名 ID が Enabledの場合にのみ発生します。

適用対象