System.Web.Management.WebApplicationInformation Class

Provides information associated with health events.

See Also: WebApplicationInformation Members

Syntax

public sealed class WebApplicationInformation

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.

Instances of the System.Web.Management.WebApplicationInformation class contain information that is obtained using any of the types derived from the System.Web.Management.WebManagementEvent type.

Your application needs the appropriate permissions to access protected information provided by this type.

The following is an excerpt of a configuration file you could use to enable ASP.NET to log error events that contain application information.

Example

<healthMonitoring 
  enabled="true" heartBeatInterval="0">

    <rules>
     <add 
       name="All Errors Default"
       eventName="All Errors"
       provider="EventLogProvider"
       profile="Default"
       minInterval="00:01:00" />
    </rules>

</healthMonitoring>
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 event class, see the example provided in this topic.

Requirements

Namespace: System.Web.Management
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0