EventMappingSettings Constructor (String, String)

 

Initializes a new instance of the EventMappingSettings class using the specified name and type.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

Public Sub New (
	name As String,
	type As String
)

Parameters

name
Type: System.String

The name of the EventMappingSettings object being created.

type
Type: System.String

The fully qualified type of the event class to use.

The following table shows the default settings that are used for this constructor.

Setting

Default Value

StartEventCode

0.

EndEventCode

MaxValue.

The following code example shows how to use the EventMappingSettings constructor. This code example is part of a larger example provided for the HealthMonitoringSection class.

' Add an EventMappingsSettings object to the EventMappings collection property.
healthMonitoringSection.EventMappings.Add(new EventMappingSettings( _
    "Failure Audits", "System.Web.Management.WebAuditEvent, System.Web"))

.NET Framework
Available since 2.0
Return to top
Show: