MailWebEventProvider Class

Definition

Provides the base functionality for creating event providers that send email.

This API supports the product infrastructure and is not intended to be used directly from your code.

public ref class MailWebEventProvider abstract : System::Web::Management::BufferedWebEventProvider
public abstract class MailWebEventProvider : System.Web.Management.BufferedWebEventProvider
type MailWebEventProvider = class
    inherit BufferedWebEventProvider
Public MustInherit Class MailWebEventProvider
Inherits BufferedWebEventProvider
Inheritance
Derived

Remarks

ASP.NET health monitoring allows production and operations staff to manage deployed Web applications. The System.Web.Management namespace contains the health event types responsible for packaging application health-status data and the provider types responsible for processing this data. It also contains supporting types that help during the management of health events.

The MailWebEventProvider class is a base class for building providers that monitor Web events and send email for selected events. This class supports the .NET Framework infrastructure and is not intended to be inherited from or used directly from your code.

Note

In most cases you will be able to use the ASP.NET health-monitoring types as implemented, and you will control the health-monitoring system by specifying values in the <healthMonitoring> configuration section. You can also derive from the health-monitoring types to create your own custom events and providers. For an example of creating a custom provider, see How to: Implement the Health Monitoring Custom Provider Example.

Properties

BufferMode

Gets a value indicating the buffering mode used by the provider.

(Inherited from BufferedWebEventProvider)
Description

Gets a brief, friendly description suitable for display in administrative tools or other user interfaces (UIs).

(Inherited from ProviderBase)
Name

Gets the friendly name used to refer to the provider during configuration.

(Inherited from ProviderBase)
UseBuffering

Gets a value indicating whether the provider is in buffered mode.

(Inherited from BufferedWebEventProvider)

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
Flush()

Moves the events from the provider's buffer into the event log.

(Inherited from BufferedWebEventProvider)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
Initialize(String, NameValueCollection)

This API supports the product infrastructure and is not intended to be used directly from your code.

Sets the initial values for this object.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ProcessEvent(WebBaseEvent)

This API supports the product infrastructure and is not intended to be used directly from your code.

Processes the event passed to the provider.

ProcessEventFlush(WebEventBufferFlushInfo)

This API supports the product infrastructure and is not intended to be used directly from your code.

Removes all events from the provider's buffer.

Shutdown()

This API supports the product infrastructure and is not intended to be used directly from your code.

Performs tasks associated with shutting down the provider.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also