Compartilhar via


EventMappingSettings Construtores

Definição

Inicializa uma nova instância da classe EventMappingSettings.

Sobrecargas

EventMappingSettings(String, String)

Inicializa uma nova instância da classe EventMappingSettings usando o nome e o tipo especificados.

EventMappingSettings(String, String, Int32, Int32)

Inicializa uma nova instância da classe BufferModeSettings usando os valores especificados.

EventMappingSettings(String, String)

Inicializa uma nova instância da classe EventMappingSettings usando o nome e o tipo especificados.

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)

Parâmetros

name
String

O nome do objeto EventMappingSettings sendo criado.

type
String

O tipo totalmente qualificado da classe de evento a usar.

Exemplos

O exemplo de código a seguir mostra como usar o EventMappingSettings construtor. Este exemplo de código faz parte de um exemplo maior fornecido para a HealthMonitoringSection classe .

// 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"))

Comentários

A tabela a seguir mostra as configurações padrão usadas para esse construtor.

Configuração Valor Padrão
StartEventCode 0.
EndEventCode MaxValue.

Confira também

Aplica-se a

EventMappingSettings(String, String, Int32, Int32)

Inicializa uma nova instância da classe BufferModeSettings usando os valores especificados.

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)

Parâmetros

name
String

O nome do objeto EventMappingSettings sendo criado.

type
String

O tipo totalmente qualificado da classe de evento a usar.

startEventCode
Int32

O intervalo de código de evento inicial.

endEventCode
Int32

O intervalo de código de evento final.

Exemplos

O exemplo de código a seguir mostra como usar o EventMappingSettings construtor. Este exemplo de código faz parte de um exemplo maior fornecido para a HealthMonitoringSection classe .

// 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))

Confira também

Aplica-se a