Compartir a través de


WebBaseErrorEvent Constructores

Definición

Inicializa una nueva instancia de la clase WebBaseErrorEvent.

Sobrecargas

WebBaseErrorEvent(String, Object, Int32, Exception)

Inicializa una nueva instancia de la clase WebBaseErrorEvent.

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

Inicializa una nueva instancia de la clase WebBaseErrorEvent.

WebBaseErrorEvent(String, Object, Int32, Exception)

Inicializa una nueva instancia de la clase 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

Descripción del evento.

eventSource
Object

El objeto que es el origen del evento.

eventCode
Int32

Código asociado al evento. Cuando se implementa un evento personalizado, el código del evento debe ser mayor que WebExtendedBase.

e
Exception

Excepción Exception asociada al error.

Ejemplos

En el ejemplo de código siguiente se muestra cómo llamar a este constructor desde un constructor para la SampleWebBaseErrorEvent clase , una clase que deriva de la WebBaseErrorEvent clase .

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

Comentarios

El sistema de ASP.NET supervisión de estado usa internamente este constructor. Puede llamar a este constructor al implementar su propio tipo de evento que hereda de esta clase.

Consulte también

Se aplica a

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

Inicializa una nueva instancia de la clase 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

Descripción del evento.

eventSource
Object

El objeto que es el origen del evento.

eventCode
Int32

Código asociado al evento. Cuando se implementa un evento personalizado, el código del evento debe ser mayor que WebExtendedBase.

eventDetailCode
Int32

Identificador detallado del evento.

e
Exception

Excepción Exception asociada al error.

Ejemplos

En el ejemplo de código siguiente se muestra cómo llamar a este constructor desde un constructor para la SampleWebBaseErrorEvent clase , una clase que deriva de la WebBaseErrorEvent clase .

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

Comentarios

El sistema de ASP.NET supervisión de estado usa internamente este constructor. Puede llamar a este constructor al implementar su propio tipo de evento que hereda de esta clase.

Consulte también

Se aplica a