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
事件源。
示例
下面的代码示例使用 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 事件定义的。 可以通过在 global.asax 文件中为 ASP.NET 应用程序指定名为 AnonymousIdentification_Creating 的子例程来访问 Creating 类的 事件。AnonymousIdentificationModule 事件 Creating 在 事件期间 PostAuthenticateRequest 引发。
AnonymousIdentificationModule使用当前 HttpContext 构造 AnonymousIdentificationEventArgs 对象,并将其传递给 AnonymousIdentification_Creating 事件。
可以使用AnonymousID提供给 AnonymousIdentification_Creating 事件的 对象的 属性AnonymousIdentificationEventArgs将匿名标识符设置为自定义值。 如果在AnonymousIdentification_Creating事件期间未指定 AnonymousID 属性的值,Guid则使用 。
仅当匿名标识为 Enabled 时,才会引发 AnonymousIdentification_Creating 事件,方法是<将 anonymousIdentification> 配置元素设置为 true
。
扩展方法
GetMethodInfo(Delegate) |
获取指示指定委托表示的方法的对象。 |