AnonymousIdentificationModule.Creating イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
新しい匿名識別子が作成されるときに発生します。
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の場合にのみ発生します。
適用対象
.NET