AnonymousIdentificationEventHandler Delegar

Definição

Representa o método que manipula o evento AnonymousIdentification_Creating de um AnonymousIdentificationModule.

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)

Parâmetros

sender
Object

A fonte do evento.

Exemplos

O exemplo de código a seguir usa o evento AnonymousIdentification_Creating para definir o identificador anônimo como um valor personalizado.

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

Comentários

O AnonymousIdentificationEventHandler delegado é definido para o Creating evento da AnonymousIdentificationModule classe . Você pode acessar o Creating evento da AnonymousIdentificationModule classe especificando uma sub-rotina chamada AnonymousIdentification_Creating no arquivo Global.asax para seu aplicativo ASP.NET. O Creating evento é gerado durante o PostAuthenticateRequest evento.

O AnonymousIdentificationModule constrói um AnonymousIdentificationEventArgs objeto usando o atual HttpContext e o passa para o evento AnonymousIdentification_Creating .

Você pode usar a AnonymousID propriedade do AnonymousIdentificationEventArgs objeto fornecido para o evento AnonymousIdentification_Creating para definir o identificador anônimo como um valor personalizado. Se você não especificar um valor para a AnonymousID propriedade durante o evento AnonymousIdentification_Creating , um Guid será usado.

O evento AnonymousIdentification_Creating só é gerado quando a identificação anônima é Enabled definindo o <elemento de configuração anonymousIdentification> como true.

Métodos de Extensão

GetMethodInfo(Delegate)

Obtém um objeto que representa o método representado pelo delegado especificado.

Aplica-se a