HttpContext.IsPostNotification Eigenschap
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Hiermee wordt een waarde opgehaald die het huidige verwerkingspunt in de ASP.NET-pijplijn is, net nadat een HttpApplication gebeurtenis is verwerkt.
public:
property bool IsPostNotification { bool get(); };
public bool IsPostNotification { get; }
member this.IsPostNotification : bool
Public ReadOnly Property IsPostNotification As Boolean
Waarde van eigenschap
true als aangepaste fouten zijn ingeschakeld; anders, false.
Uitzonderingen
De bewerking vereist de geïntegreerde pijplijnmodus in IIS 7.0 en ten minste het .NET Framework 3.0.
Voorbeelden
In het volgende voorbeeld ziet u hoe u de IsPostNotification eigenschap gebruikt om te bepalen wanneer een gebeurtenis van het HttpApplication object klaar is met het verwerken van alle bijbehorende gebeurtenis-handlers. De aangepaste gebeurtenis-handler in dit voorbeeld verwerkt verschillende gebeurtenissen van het HttpApplication object en de IsPostNotification eigenschap wordt gebruikt om te bepalen welke code wordt aangeroepen nadat een specifieke gebeurtenis is verwerkt.
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
Opmerkingen
De eigenschap IsPostNotification wordt alleen ondersteund met de geïntegreerde modus in IIS 7.0 en ten minste de .NET Framework 3.0. Indien beschikbaar, retourneert de eigenschap een Booleaanse waarde die aangeeft of een gebeurtenis in het HttpApplication object is verwerkt.
De IsPostNotification eigenschap is niet bedoeld om in te stellen. In plaats daarvan wordt het door IIS 7.0 geleverd aan de ASP.NET runtime voor elke melding. Het instellen van de IsPostNotification eigenschap resulteert in een compilatiefout.
In scenario's waarin meerdere gebeurtenissen van het HttpApplication object worden verwerkt door één gebeurtenis-handler, kunt u de IsPostNotification eigenschap in combinatie met de RequestNotification opsomming gebruiken om precies te bepalen waar in de levenscyclus van de toepassing de huidige aanvraag is.
IsPostNotification wordt geïntroduceerd in de .NET Framework versie 3.5. Zie Versies en afhankelijkheden voor meer informatie.