AnonymousIdentificationEventArgs クラス
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
AnonymousIdentification_Creating イベントのデータを提供します。 このクラスは継承できません。
public ref class AnonymousIdentificationEventArgs sealed : EventArgs
public sealed class AnonymousIdentificationEventArgs : EventArgs
type AnonymousIdentificationEventArgs = class
inherit EventArgs
Public NotInheritable Class AnonymousIdentificationEventArgs
Inherits EventArgs
- 継承
次のコード例では、 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
クラスは AnonymousIdentificationEventArgs 、イベントにイベント値を指定し、現在の Creating 要求のカスタム Windows ID を指定するために使用されます。 クラスのイベントに Creating アクセスするには、ASP.NET アプリケーションの AnonymousIdentificationModule Global.asax ファイルで AnonymousIdentification_Creating という名前のサブルーチンを指定します。
はAnonymousIdentificationModule、現在HttpContextの をAnonymousIdentificationEventArgs使用して オブジェクトを構築し、AnonymousIdentification_Creating イベントに渡します。
AnonymousIdentification_Creating イベントにAnonymousIDAnonymousIdentificationEventArgs指定された オブジェクトの プロパティを使用して、匿名識別子をカスタム値に設定できます。 AnonymousIdentification_Creating イベント中に プロパティのAnonymousID値を指定しない場合は、 Guid が使用されます。
AnonymousIdentification_Creating イベントは、匿名 ID が のEnabled場合にのみ発生します。
Anonymous |
AnonymousIdentificationEventArgs クラスの新しいインスタンスを初期化します。 |
AnonymousID |
ユーザーの匿名識別子を取得または設定します。 |
Context |
現在の HTTP 要求に対する HttpContext オブジェクトを取得します。 |
Equals(Object) |
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
Get |
既定のハッシュ関数として機能します。 (継承元 Object) |
Get |
現在のインスタンスの Type を取得します。 (継承元 Object) |
Memberwise |
現在の Object の簡易コピーを作成します。 (継承元 Object) |
To |
現在のオブジェクトを表す文字列を返します。 (継承元 Object) |
製品 | バージョン |
---|---|
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET に関するフィードバック
.NET はオープンソース プロジェクトです。 フィードバックを提供するにはリンクを選択します。