Compartilhar via


WebBaseErrorEvent Construtores

Definição

Inicializa uma nova instância da classe WebBaseErrorEvent.

Sobrecargas

WebBaseErrorEvent(String, Object, Int32, Exception)

Inicializa uma nova instância da classe WebBaseErrorEvent.

WebBaseErrorEvent(String, Object, Int32, Int32, Exception)

Inicializa uma nova instância da classe WebBaseErrorEvent.

WebBaseErrorEvent(String, Object, Int32, Exception)

Inicializa uma nova instância da classe WebBaseErrorEvent.

protected public:
 WebBaseErrorEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, Exception ^ e);
protected internal WebBaseErrorEvent (string message, object eventSource, int eventCode, Exception e);
new System.Web.Management.WebBaseErrorEvent : string * obj * int * Exception -> System.Web.Management.WebBaseErrorEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, e As Exception)

Parâmetros

message
String

A descrição do evento.

eventSource
Object

O objeto que é a origem do evento.

eventCode
Int32

O código associado ao evento. Quando você implementar um evento personalizado, o código de evento deverá ser maior que WebExtendedBase.

e
Exception

A Exception associada ao erro.

Exemplos

O exemplo de código a seguir mostra como chamar esse construtor de um construtor para a SampleWebBaseErrorEvent classe , uma classe derivada da WebBaseErrorEvent classe .

// Invoked in case of events identified only by their event code.
public SampleWebBaseErrorEvent(string msg, 
    object eventSource, int eventCode, Exception e):
  base(msg, eventSource, eventCode, e)
{
    // Perform custom initialization.
    customCreatedMsg =
      string.Format("Event created at: {0}", 
      DateTime.Now.TimeOfDay.ToString());
}
' Invoked in case of events identified only by their event code.
Public Sub New(ByVal msg As String, ByVal eventSource As Object, _
ByVal eventCode As Integer, ByVal e As Exception)
    MyBase.New(msg, eventSource, eventCode, e)
    ' Perform custom initialization.
    customCreatedMsg = String.Format("Event created at: {0}", _
    DateTime.Now.TimeOfDay.ToString())

End Sub

Comentários

Esse construtor é usado internamente pelo sistema de monitoramento de integridade ASP.NET. Você pode chamar esse construtor ao implementar seu próprio tipo de evento que herda dessa classe.

Confira também

Aplica-se a

WebBaseErrorEvent(String, Object, Int32, Int32, Exception)

Inicializa uma nova instância da classe WebBaseErrorEvent.

protected public:
 WebBaseErrorEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, int eventDetailCode, Exception ^ e);
protected internal WebBaseErrorEvent (string message, object eventSource, int eventCode, int eventDetailCode, Exception e);
new System.Web.Management.WebBaseErrorEvent : string * obj * int * int * Exception -> System.Web.Management.WebBaseErrorEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, eventDetailCode As Integer, e As Exception)

Parâmetros

message
String

A descrição do evento.

eventSource
Object

O objeto que é a origem do evento.

eventCode
Int32

O código associado ao evento. Quando você implementar um evento personalizado, o código de evento deverá ser maior que WebExtendedBase.

eventDetailCode
Int32

O identificador detalhado para o evento.

e
Exception

A Exception associada ao erro.

Exemplos

O exemplo de código a seguir mostra como chamar esse construtor de um construtor para a SampleWebBaseErrorEvent classe , uma classe derivada da WebBaseErrorEvent classe .

// Invoked in case of events identified by their event code and 
// related event detailed code.
public SampleWebBaseErrorEvent(string msg, object eventSource, 
    int eventCode, int detailedCode, Exception e):
  base(msg, eventSource, eventCode, detailedCode, e)
{
    // Perform custom initialization.
    customCreatedMsg =
      string.Format("Event created at: {0}", 
      DateTime.Now.TimeOfDay.ToString());
}
' Invoked in case of events identified by their event code and 
' related event detailed code.
Public Sub New(ByVal msg As String, ByVal eventSource As Object, _
ByVal eventCode As Integer, ByVal detailedCode As Integer, _
ByVal e As Exception)
    MyBase.New(msg, eventSource, eventCode, detailedCode, e)
    ' Perform custom initialization.
    customCreatedMsg = String.Format("Event created at: {0}", _
    DateTime.Now.TimeOfDay.ToString())

End Sub

Comentários

Esse construtor é usado internamente pelo sistema de monitoramento de integridade ASP.NET. Você pode chamar esse construtor ao implementar seu próprio tipo de evento que herda dessa classe.

Confira também

Aplica-se a