HttpContext.IsPostNotification Eigenschaft

Definition

Ruft einen Wert ab, der der aktuelle Verarbeitungspunkt in der ASP.NET-Pipeline ist, gleich nachdem ein HttpApplication-Ereignis die Verarbeitung beendet hat.

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

Eigenschaftswert

true, wenn benutzerdefinierte Fehler aktiviert sind, andernfalls false.

Ausnahmen

Der Vorgang erfordert den integrierten Pipelinemodus in IIS 7.0 und mindestens den .NET Framework 3.0.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie die IsPostNotification -Eigenschaft verwendet wird, um zu bestimmen, wann ein Ereignis des Objekts die HttpApplication Verarbeitung aller zugeordneten Ereignishandler abgeschlossen hat. Der benutzerdefinierte Ereignishandler in diesem Beispiel behandelt mehrere Ereignisse des HttpApplication -Objekts, und die IsPostNotification -Eigenschaft wird verwendet, um zu bestimmen, welcher Code aufgerufen wird, nachdem ein bestimmtes Ereignis behandelt wurde.

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

Hinweise

Die IsPostNotification -Eigenschaft wird nur mit dem integrierten Modus in IIS 7.0 und mindestens dem .NET Framework 3.0 unterstützt. Wenn verfügbar, gibt die Eigenschaft einen booleschen Wert zurück, der angibt, ob die Verarbeitung eines Ereignisses HttpApplication im Objekt abgeschlossen wurde.

Die IsPostNotification -Eigenschaft soll nicht festgelegt werden. Stattdessen wird sie von IIS 7.0 für die ASP.NET Runtime für jede Benachrichtigung bereitgestellt. Das Festlegen der IsPostNotification Eigenschaft führt zu einem Kompilierungsfehler.

In Szenarien, in denen mehrere Ereignisse des HttpApplication Objekts von einem Ereignishandler behandelt werden, können Sie die IsPostNotification -Eigenschaft in Kombination mit der RequestNotification -Enumeration verwenden, um genau zu bestimmen, wo sich die aktuelle Anforderung im Anwendungslebenszyklus befindet.

IsPostNotificationwird in der .NET Framework Version 3.5 eingeführt. Weitere Informationen finden Sie unter Versionen und Abhängigkeiten.

Gilt für:

Weitere Informationen