AnonymousIdentificationModule.Creating Evento

Definizione

Si verifica quando viene creato un nuovo identificatore anonimo.

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 

Tipo evento

Esempio

Nell'esempio di codice seguente viene usato l'evento AnonymousIdentification_Creating per impostare l'identificatore anonimo su un valore personalizzato.

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

Commenti

L'evento Creating viene generato durante l'evento PostAuthenticateRequest .

È possibile accedere all'evento Creating della AnonymousIdentificationModule classe specificando una subroutine denominata AnonymousIdentification_Creating nel file Global.asax per l'applicazione ASP.NET.

È possibile usare la AnonymousID proprietà dell'oggetto AnonymousIdentificationEventArgs fornito all'evento AnonymousIdentification_Creating per impostare l'identificatore anonimo su un valore personalizzato. Se non si specifica un valore per la proprietà durante l'evento AnonymousIDAnonymousIdentification_Creating , viene usato un oggetto Guid .

L'evento AnonymousIdentification_Creating viene generato solo quando l'identificazione anonima è Enabled.

Si applica a