WebRequestErrorEvent Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Inicializa una nueva instancia de la clase WebRequestErrorEvent.
Sobrecargas
WebRequestErrorEvent(String, Object, Int32, Exception) |
Inicializa la clase WebRequestErrorEvent con parámetros de evento especificados. |
WebRequestErrorEvent(String, Object, Int32, Int32, Exception) |
Inicializa la clase WebRequestErrorEvent con parámetros de evento especificados. |
Comentarios
El valor que se usa para definir el código de evento o el identificador debe ser mayor que la constante de WebExtendedBase campo.
WebRequestErrorEvent(String, Object, Int32, Exception)
Inicializa la clase WebRequestErrorEvent con parámetros de evento especificados.
protected public:
WebRequestErrorEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, Exception ^ exception);
protected internal WebRequestErrorEvent (string message, object eventSource, int eventCode, Exception exception);
new System.Web.Management.WebRequestErrorEvent : string * obj * int * Exception -> System.Web.Management.WebRequestErrorEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, exception As Exception)
Parámetros
- message
- String
Descripción del evento.
- eventSource
- Object
El objeto que es el origen del evento.
- eventCode
- Int32
Identificador asociado al evento. Debe ser mayor que la constante del campo WebExtendedBase.
Ejemplos
En el ejemplo de código siguiente se muestra cómo usar este constructor.
// Invoked in case of events
// identified only by their event code.
public SampleWebRequestErrorEvent(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
Comentarios
Este constructor permite crear un WebRequestErrorEvent evento sin necesidad de especificar información detallada del código sobre el propio evento.
Se aplica a
WebRequestErrorEvent(String, Object, Int32, Int32, Exception)
Inicializa la clase WebRequestErrorEvent con parámetros de evento especificados.
protected public:
WebRequestErrorEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, int eventDetailCode, Exception ^ exception);
protected internal WebRequestErrorEvent (string message, object eventSource, int eventCode, int eventDetailCode, Exception exception);
new System.Web.Management.WebRequestErrorEvent : string * obj * int * int * Exception -> System.Web.Management.WebRequestErrorEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, eventDetailCode As Integer, exception As Exception)
Parámetros
- message
- String
Descripción del evento.
- eventSource
- Object
El objeto que es el origen del evento.
- eventCode
- Int32
Identificador asociado al evento. Debe ser mayor que la constante del campo WebExtendedBase.
- eventDetailCode
- Int32
Identificador de código de detalle del evento.
Ejemplos
En el ejemplo de código siguiente se muestra cómo usar este constructor.
// Invoked in case of events identified
// by their event code.and related event
// detailed code.
public SampleWebRequestErrorEvent(
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
Comentarios
Use este constructor si necesita especificar información detallada del código sobre el evento.