Compartir a través de


HttpContext.IsPostNotification Propiedad

Definición

Obtiene un valor que es el punto de procesamiento actual en la canalización de ASP.NET justo después de que un evento de HttpApplication haya finalizado el procesamiento.

public:
 property bool IsPostNotification { bool get(); };
public bool IsPostNotification { get; }
member this.IsPostNotification : bool
Public ReadOnly Property IsPostNotification As Boolean

Valor de propiedad

Boolean

Es true si se habilitaron errores personalizados; en caso contrario, es false.

Excepciones

La operación requiere el modo de canalización integrado en IIS 7.0 y al menos el .NET Framework 3.0.

Ejemplos

En el ejemplo siguiente se muestra cómo usar la IsPostNotification propiedad para determinar cuándo un evento del HttpApplication objeto ha terminado de procesar todos los controladores de eventos asociados. El controlador de eventos personalizado de este ejemplo controla varios eventos del HttpApplication objeto y la IsPostNotification propiedad se usa para determinar qué código se invoca después de controlar un evento específico.

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 IsPostNotification propiedad solo se admite con el modo integrado en IIS 7.0 y al menos el .NET Framework 3.0. Cuando está disponible, la propiedad devuelve un valor booleano que indica si un evento del objeto ha terminado de HttpApplication procesarse.

La IsPostNotification propiedad no está pensada para establecerse. En su lugar, IIS 7.0 lo proporciona al entorno de ejecución de ASP.NET para cada notificación. Si se establece la IsPostNotification propiedad, se producirá un error de compilación.

En escenarios en los que un controlador de eventos controla varios eventos del HttpApplication objeto, puede usar la IsPostNotification propiedad en combinación con la RequestNotification enumeración para determinar con precisión dónde está la solicitud actual en el ciclo de vida de la aplicación.

IsPostNotificationse introduce en la .NET Framework versión 3.5. Para más información, vea Versiones y dependencias.

Se aplica a

Consulte también