引发自定义 ASP.NET 运行状况监视事件示例
更新:2007 年 11 月
本主题中的示例演示了如何实现可以引发自定义 ASP.NET 运行状况监视事件的 IHttpModule 模块。有关如何使用此示例的详细信息,请参见如何:实现和引发自定义 ASP.NET 运行状况监视事件。
示例
下面的代码示例演示如何从 WebRequestEvent 类派生以创建自定义 ASP.NET 运行状况监视事件。为指导起见,代码包含在引发自定义事件的 HTTP 模块实现中。或者,可以从其他 ASP.NET 页或程序集引发自定义事件。与内置的 ASP.NET 运行状况监视事件不同的是,自定义事件必须显式引发。
using System;
using System.Web;
using System.Web.Management;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Samples.AspNet.Management
{
public class CustomWebEvents : Page, IHttpModule
{
public override void Dispose()
{
}
// Add event handlers to the HttpApplication.
public new void Init(HttpApplication httpApp)
{
httpApp.BeginRequest +=
new EventHandler(OnBeginRequest);
httpApp.EndRequest +=
new EventHandler(OnEndRequest);
}
// Issues a custom begin request event.
public void OnBeginRequest(Object sender, EventArgs e)
{
HttpApplication httpApp = sender as HttpApplication;
try
{
// Make sure to be outside the forbidden range.
System.Int32 myCode = WebEventCodes.WebExtendedBase + 30;
SampleWebRequestEvent swre =
new SampleWebRequestEvent(
"SampleWebRequestEvent Start", this, myCode);
// Raise the event.
swre.Raise();
}
catch (Exception ex)
{
httpApp.Context.Response.Output.WriteLine(
ex.ToString());
}
}
// Issues a custom end request event.
public void OnEndRequest(Object sender, EventArgs e)
{
HttpApplication httpApp = sender as HttpApplication;
try
{
// Make sure to be outside the forbidden range.
System.Int32 myCode = WebEventCodes.WebExtendedBase + 40;
SampleWebRequestEvent swre =
new SampleWebRequestEvent(
"SampleWebRequestEvent End", this, myCode);
// Raise the event.
swre.Raise();
}
catch (Exception ex)
{
httpApp.Context.Response.Output.WriteLine(
ex.ToString());
}
}
}
public class SampleWebRequestEvent : System.Web.Management.WebRequestEvent
{
private string customCreatedMsg;
private string customRaisedMsg;
// Invoked in case of events identified only by their event code.
public SampleWebRequestEvent(
string msg,
object eventSource,
int eventCode)
:
base(msg, eventSource, eventCode)
{
// Perform custom initialization.
customCreatedMsg = string.Format("Event created at: {0}",
EventTime.ToString());
}
// Invoked in case of events identified by their event code and
// related event detailed code.
public SampleWebRequestEvent(
string msg,
object eventSource,
int eventCode,
int eventDetailCode)
:
base(msg, eventSource, eventCode, eventDetailCode)
{
// Perform custom initialization.
customCreatedMsg = string.Format("Event created at: {0}",
EventTime.ToString());
}
// Raises the SampleWebRequestEvent.
public override void Raise()
{
// Perform custom processing.
customRaisedMsg = string.Format("Event raised at: {0}",
EventTime.ToString());
// Raise the event.
base.Raise();
}
//Formats Web request event information.
public override void FormatCustomEventDetails(
WebEventFormatter formatter)
{
// Add custom data.
formatter.AppendLine("");
formatter.IndentationLevel += 1;
formatter.AppendLine("* Custom Request Information Start *");
// Display custom event timing.
formatter.AppendLine(customCreatedMsg);
formatter.AppendLine(customRaisedMsg);
formatter.AppendLine("* Custom Request Information End *");
formatter.IndentationLevel -= 1;
}
}
}