WebEventProvider.ProcessEvent Method (WebBaseEvent)
.NET Framework (current version)
Processes the event passed to the provider.
Assembly: System.Web (in System.Web.dll)
Parameters
- raisedEvent
-
Type:
System.Web.Management.WebBaseEvent
The WebBaseEvent object to process.
This is the method that ASP.NET health monitoring calls to start processing the event.
The following code example shows how to implement the ProcessEvent method. This method appends the customized string representation of the event to a specific log file.
// Process the event that has been raised. public override void ProcessEvent(WebBaseEvent raisedEvent) { if (msgCounter < maxMsgNumber) { // Buffer the event information. msgBuffer.Enqueue(raisedEvent); // Increment the message counter. msgCounter += 1; } else { // Flush the buffer. Flush(); } }
.NET Framework
Available since 2.0
Available since 2.0
Show: