Compartilhar via


WebErrorEvent Construtores

Definição

Inicializa uma nova instância da classe WebErrorEvent.

Sobrecargas

WebErrorEvent(String, Object, Int32, Exception)

Inicializa a classe WebErrorEvent usando os parâmetros fornecidos.

WebErrorEvent(String, Object, Int32, Int32, Exception)

Inicializa uma nova instância da classe WebErrorEvent usando os parâmetros fornecidos.

WebErrorEvent(String, Object, Int32, Exception)

Inicializa a classe WebErrorEvent usando os parâmetros fornecidos.

protected public:
 WebErrorEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, Exception ^ exception);
protected internal WebErrorEvent (string message, object eventSource, int eventCode, Exception exception);
new System.Web.Management.WebErrorEvent : string * obj * int * Exception -> System.Web.Management.WebErrorEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, exception 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.

exception
Exception

A Exception associada ao erro.

Exemplos

O exemplo de código a seguir mostra como personalizar esse construtor.

// Invoked in case of events identified 
// only by their event code.
public SampleWebErrorEvent(string msg, 
    object eventSource, int eventCode, Exception e)
    :
base(msg, eventSource, eventCode, e)
{
    // Perform custom initialization.
    eventInfo = new StringBuilder();
    eventInfo.Append(string.Format(
        "Event created at: ", EventTime.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.
     eventInfo = New StringBuilder()
     eventInfo.Append(String.Format( _
     "Event created at: ", EventTime.ToString()))
 End Sub

Comentários

O WebErrorEvent construtor não se destina a ser usado diretamente do seu código. Ele é chamado por ASP.NET. Você pode chamar o WebErrorEvent construtor ao derivar da WebErrorEvent classe .

Confira também

Aplica-se a

WebErrorEvent(String, Object, Int32, Int32, Exception)

Inicializa uma nova instância da classe WebErrorEvent usando os parâmetros fornecidos.

protected public:
 WebErrorEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, int eventDetailCode, Exception ^ exception);
protected internal WebErrorEvent (string message, object eventSource, int eventCode, int eventDetailCode, Exception exception);
new System.Web.Management.WebErrorEvent : string * obj * int * int * Exception -> System.Web.Management.WebErrorEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, eventDetailCode As Integer, exception 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 valor de WebEventCodes que especifica o identificador detalhado do evento.

exception
Exception

A Exception associada ao erro.

Exemplos

O exemplo de código a seguir mostra como derivar da WebErrorEvent classe para criar um evento personalizado.

// Invoked in case of events identified 
// by their event code.and 
// related event detailed code.
public SampleWebErrorEvent(string msg, 
    object eventSource, int eventCode, 
    int detailedCode, Exception e):
  base(msg, eventSource, 
    eventCode, detailedCode, e)
{
    // Perform custom initialization.
    eventInfo = new StringBuilder();
    eventInfo.Append(string.Format(
        "Event created at: ", EventTime.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.
     eventInfo = New StringBuilder()
     eventInfo.Append(String.Format( _
     "Event created at: ", EventTime.ToString()))
 End Sub

Comentários

O WebErrorEvent construtor não se destina a ser usado diretamente do seu código. Ele é chamado por ASP.NET. Você pode chamar o WebErrorEvent construtor ao derivar da WebErrorEvent classe .

Confira também

Aplica-se a