RequestNotification Перечисление

Определение

Показывает события (в том числе события жизненного цикла), происходящие при обработке запроса HttpApplication.

Это перечисление поддерживает побитовую комбинацию значений его членов.

public enum class RequestNotification
[System.Flags]
public enum RequestNotification
[<System.Flags>]
type RequestNotification = 
Public Enum RequestNotification
Наследование
RequestNotification
Атрибуты

Поля

AcquireRequestState 32

Показывает, что событие AcquireRequestState сформировано для запроса и обрабатывается.

AuthenticateRequest 2

Показывает, что событие AuthenticateRequest сформировано для запроса и обрабатывается.

AuthorizeRequest 4

Показывает, что событие AuthorizeRequest сформировано для запроса и обрабатывается.

BeginRequest 1

Показывает, что событие BeginRequest сформировано для запроса и обрабатывается.

EndRequest 2048

Показывает, что событие EndRequest сформировано для запроса и обрабатывается.

ExecuteRequestHandler 128

Показывает, что обработчик, который сопоставлен с запрашиваемым ресурсом, запущен для обработки запроса.

LogRequest 1024

Показывает, что событие LogRequest сформировано для запроса и обрабатывается.

MapRequestHandler 16

Показывает, что событие MapRequestHandler сформировано для запроса и обрабатывается.

PreExecuteRequestHandler 64

Показывает пункт в жизненном цикле приложения непосредственно перед сопоставлением обработчика запроса.

ReleaseRequestState 256

Показывает, что событие ReleaseRequestState сформировано для запроса и обрабатывается.

ResolveRequestCache 8

Показывает, что событие ResolveRequestCache сформировано для запроса и обрабатывается.

SendResponse 536870912

Показывает, что обработка запроса завершена и отправлен ответ.

UpdateRequestCache 512

Показывает, что событие UpdateRequestCache сформировано для запроса и обрабатывается.

Примеры

В следующем примере показано, как использовать RequestNotification перечисление со свойством CurrentNotification , чтобы определить, какое событие текущего HttpApplication экземпляра обрабатывает запрос.

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

Комментарии

Перечисление RequestNotification используется со свойством CurrentNotification класса , HttpContext чтобы определить, какое событие в конвейере обрабатывается в данный момент. Чтобы определить, когда все обработчики для определенного события экземпляра HttpApplication завершили обработку IsPostNotification , используйте свойство .

Тип RequestNotification представлен в платформа .NET Framework 3.5. Дополнительные сведения см. в статье Версии и зависимости платформы .NET Framework.

Применяется к

См. также раздел