HttpContext.IsPostNotification Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá hodnotu, která je aktuálním bodem zpracování v kanálu ASP.NET těsně po HttpApplication dokončení zpracování události.
public:
property bool IsPostNotification { bool get(); };
public bool IsPostNotification { get; }
member this.IsPostNotification : bool
Public ReadOnly Property IsPostNotification As Boolean
Hodnota vlastnosti
true
pokud jsou povoleny vlastní chyby; false
v opačném případě .
Výjimky
Operace vyžaduje režim integrovaného kanálu ve službě IIS 7.0 a alespoň .NET Framework 3.0.
Příklady
Následující příklad ukazuje, jak použít IsPostNotification vlastnost k určení, kdy událost objektu dokončil zpracování všech přidružených HttpApplication obslužných rutin událostí. Obslužná rutina vlastní události v tomto příkladu zpracovává několik událostí objektu HttpApplication a IsPostNotification vlastnost se používá k určení, jaký kód je vyvolán po zpracování konkrétní události.
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
Poznámky
Vlastnost IsPostNotification je podporována pouze v integrovaném režimu ve službě IIS 7.0 a alespoň .NET Framework 3.0. Pokud je k dispozici, vrátí vlastnost logickou hodnotu, která označuje, zda událost v objektu HttpApplication dokončila zpracování.
Vlastnost IsPostNotification není určena k nastavení. Místo toho ji služba IIS 7.0 poskytuje modulu ASP.NET runtime pro každé oznámení. IsPostNotification Nastavení vlastnosti způsobí chybu kompilace.
Ve scénářích, kdy jeden obslužný rutina události zpracovává více událostí objektu HttpApplication , můžete použít IsPostNotification vlastnost v kombinaci s výčtem RequestNotification přesně určit, kde v životním cyklu aplikace je aktuální požadavek.
IsPostNotificationje zaveden v .NET Framework verze 3.5. Další informace naleznete v tématu Verze a závislosti.