RequestNotification Enumeración

Definición

Indica cuándo se producen eventos y otros eventos de ciclo de vida durante el procesamiento de una solicitud HttpApplication.

Esta enumeración admite una combinación bit a bit de sus valores de miembro.

public enum class RequestNotification
[System.Flags]
public enum RequestNotification
[<System.Flags>]
type RequestNotification = 
Public Enum RequestNotification
Herencia
RequestNotification
Atributos

Campos

AcquireRequestState 32

Indica que se ha producido y se está procesando el evento AcquireRequestState para la solicitud.

AuthenticateRequest 2

Indica que se ha producido y se está procesando el evento AuthenticateRequest para la solicitud.

AuthorizeRequest 4

Indica que se ha producido y se está procesando el evento AuthorizeRequest para la solicitud.

BeginRequest 1

Indica que se ha producido y se está procesando el evento BeginRequest para la solicitud.

EndRequest 2048

Indica que se ha producido y se está procesando el evento EndRequest para la solicitud.

ExecuteRequestHandler 128

Indica que se está invocando el controlador asignado al recurso solicitado para que procese la solicitud.

LogRequest 1024

Indica que se ha producido y se está procesando el evento LogRequest para la solicitud.

MapRequestHandler 16

Indica que se ha producido y se está procesando el evento MapRequestHandler para la solicitud.

PreExecuteRequestHandler 64

Indica un punto en el ciclo de vida de la aplicación justo antes de que se asigne el controlador que procesa la solicitud.

ReleaseRequestState 256

Indica que se ha producido y se está procesando el evento ReleaseRequestState para la solicitud.

ResolveRequestCache 8

Indica que se ha producido y se está procesando el evento ResolveRequestCache para la solicitud.

SendResponse 536870912

Indica que se ha completado el procesamiento de la solicitud y que se está enviando la respuesta.

UpdateRequestCache 512

Indica que se ha producido y se está procesando el evento UpdateRequestCache para la solicitud.

Ejemplos

En el ejemplo siguiente se muestra cómo usar la RequestNotification enumeración con la CurrentNotification propiedad para determinar qué evento de la instancia actual HttpApplication está procesando la solicitud.

using System;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.UI;

// Module that demonstrates one event handler for several events.
namespace Samples
{
    public class ModuleExampleTestCS : IHttpModule
    {
        public ModuleExampleTestCS()
        {
            // Constructor
        }
        public void Init(HttpApplication app)
        {
            app.AuthenticateRequest += new EventHandler(App_Handler);
            app.PostAuthenticateRequest += new EventHandler(App_Handler);
            app.LogRequest += new EventHandler(App_Handler);
            app.PostLogRequest += new EventHandler(App_Handler);
        }
        public void Dispose()
        {
        }
        // One handler for AuthenticationRequest, PostAuthenticateRequest,
    // LogRequest, and PostLogRequest events
        public void App_Handler(object source, EventArgs e)
        {
            HttpApplication app = (HttpApplication)source;
            HttpContext context = app.Context;

            if (context.CurrentNotification == RequestNotification.AuthenticateRequest)
            {

                if (!context.IsPostNotification)
                {
                    // Put code here that is invoked when the AuthenticateRequest event is raised.
                }
                else
                {
                    // PostAuthenticateRequest 
                    // Put code here that runs after the AuthenticateRequest event completes.
                }
            }
            if (context.CurrentNotification == RequestNotification.LogRequest)
            {
                if (!context.IsPostNotification)
                {
                    // Put code here that is invoked when the LogRequest event is raised.
                }
                else
                {
                    // PostLogRequest
                    // Put code here that runs after the LogRequest event completes.
                }
            }
        }
    }
}
Imports System.Data
Imports System.Web
Imports System.Web.Security
Imports System.Web.UI

' Module that demonstrates one event handler for several events.
Namespace Samples

    Public Class ModuleExampleTestVB
        Implements IHttpModule

        Public Sub New()
            ' Constructor
        End Sub

        Public Sub Init(ByVal app As HttpApplication) Implements IHttpModule.Init
            AddHandler app.AuthenticateRequest, AddressOf Me.App_Handler
            AddHandler app.PostAuthenticateRequest, AddressOf Me.App_Handler
            AddHandler app.LogRequest, AddressOf Me.App_Handler
            AddHandler app.PostLogRequest, AddressOf Me.App_Handler
        End Sub

        Public Sub Dispose() Implements IHttpModule.Dispose
        End Sub

        ' One handler for AuthenticationRequest, PostAuthenticateRequest,
    ' LogRequest, and PostLogRequest events
        Public Sub App_Handler(ByVal source As Object, ByVal e As EventArgs)
            Dim app As HttpApplication = CType(source, HttpApplication)
            Dim context As HttpContext = app.Context

            If (context.CurrentNotification = RequestNotification.AuthenticateRequest) Then

                If Not (context.IsPostNotification) Then

                    ' Put code here that is invoked when the AuthenticateRequest event is raised.
                Else

                    ' PostAuthenticateRequest 
                    ' Put code here that runs after the AuthenticateRequest event completes.

                End If
            End If

            If (context.CurrentNotification = RequestNotification.LogRequest) Then

                If Not (context.IsPostNotification) Then

                    ' Put code here that is invoked when the LogRequest event is raised.

                Else
                    ' PostLogRequest
                    ' Put code here that runs after the LogRequest event completes.

                End If
            End If
        End Sub
    End Class

End Namespace

Comentarios

La RequestNotification enumeración se usa con la CurrentNotification propiedad de la HttpContext clase para determinar qué evento de la canalización está procesando actualmente. Para determinar cuándo todos los controladores de un evento específico de la HttpApplication instancia han terminado de procesarse, use la IsPostNotification propiedad .

El RequestNotification tipo se introduce en .NET Framework 3.5. Para más información, vea Versiones y dependencias.

Se aplica a

Consulte también