Прочетете на английски Редактиране

Споделяне чрез


AnonymousIdentificationEventArgs.AnonymousID Property

Definition

Gets or sets the anonymous identifier for the user.

C#
public string AnonymousID { get; set; }

Property Value

The anonymous identifier for the user.

Examples

The following code example uses the AnonymousIdentification_Creating event to set the anonymous identifier to a custom value.

C#
public void AnonymousIdentification_Creating(object sender, 
                                             AnonymousIdentificationEventArgs args)
{
  args.AnonymousID = Samples.AspNet.Security.MyIdClass.GetAnonymousId();
  Samples.AspNet.Security.MyIdClass.LogAnonymousId(args.AnonymousID);
}

Remarks

You can use the AnonymousID property to set the anonymous identifier to a custom value during the AnonymousIdentification_Creating event. If you do not specify a value for the AnonymousID property during the AnonymousIdentification_Creating event, a Guid is used.

The AnonymousIdentification_Creating event is only raised when the anonymous identification is Enabled.

Applies to

Продукт Версии
.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