Sdílet prostřednictvím


EventMappingSettings Konstruktory

Definice

Inicializuje novou instanci EventMappingSettings třídy.

Přetížení

EventMappingSettings(String, String)

Inicializuje novou instanci EventMappingSettings třídy pomocí zadaného názvu a typu.

EventMappingSettings(String, String, Int32, Int32)

Inicializuje novou instanci BufferModeSettings třídy pomocí zadaných hodnot.

EventMappingSettings(String, String)

Inicializuje novou instanci EventMappingSettings třídy pomocí zadaného názvu a typu.

public:
 EventMappingSettings(System::String ^ name, System::String ^ type);
public EventMappingSettings (string name, string type);
new System.Web.Configuration.EventMappingSettings : string * string -> System.Web.Configuration.EventMappingSettings
Public Sub New (name As String, type As String)

Parametry

name
String

Název vytvářeného objektu EventMappingSettings .

type
String

Plně kvalifikovaný typ třídy události, která se má použít.

Příklady

Následující příklad kódu ukazuje, jak použít EventMappingSettings konstruktor. Tento příklad kódu je součástí většího příkladu HealthMonitoringSection pro třídu.

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

Poznámky

Následující tabulka ukazuje výchozí nastavení, která se používají pro tento konstruktor.

Nastavení Výchozí hodnota
StartEventCode 0.
EndEventCode MaxValue.

Viz také

Platí pro

EventMappingSettings(String, String, Int32, Int32)

Inicializuje novou instanci BufferModeSettings třídy pomocí zadaných hodnot.

public:
 EventMappingSettings(System::String ^ name, System::String ^ type, int startEventCode, int endEventCode);
public EventMappingSettings (string name, string type, int startEventCode, int endEventCode);
new System.Web.Configuration.EventMappingSettings : string * string * int * int -> System.Web.Configuration.EventMappingSettings
Public Sub New (name As String, type As String, startEventCode As Integer, endEventCode As Integer)

Parametry

name
String

Název vytvářeného objektu EventMappingSettings .

type
String

Plně kvalifikovaný typ třídy události, která se má použít.

startEventCode
Int32

Počáteční rozsah kódu události.

endEventCode
Int32

Koncový rozsah kódu události.

Příklady

Následující příklad kódu ukazuje, jak použít EventMappingSettings konstruktor. Tento příklad kódu je součástí většího příkladu HealthMonitoringSection pro třídu.

// Add an EventMappingsSettings object to the EventMappings collection property.
healthMonitoringSection.EventMappings.Add(new EventMappingSettings(
    "Success Audits", "System.Web.Management.WebAuditEvent, System.Web",
    512, Int32.MaxValue));
' Add an EventMappingsSettings object to the EventMappings collection property.
healthMonitoringSection.EventMappings.Add(new EventMappingSettings( _
    "Success Audits", "System.Web.Management.WebAuditEvent, System.Web", _
    512, Int32.MaxValue))

Viz také

Platí pro