WebRequestErrorEvent Costruttori

Definizione

Inizializza una nuova istanza della classe WebRequestErrorEvent.

Overload

WebRequestErrorEvent(String, Object, Int32, Exception)

Inizializza la classe WebRequestErrorEvent con i parametri di evento specificati.

WebRequestErrorEvent(String, Object, Int32, Int32, Exception)

Inizializza la classe WebRequestErrorEvent con i parametri di evento specificati.

Commenti

Il valore usato per definire il codice evento o l'identificatore deve essere maggiore della WebExtendedBase costante del campo.

WebRequestErrorEvent(String, Object, Int32, Exception)

Inizializza la classe WebRequestErrorEvent con i parametri di evento specificati.

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)

Parametri

message
String

Descrizione dell'evento.

eventSource
Object

Oggetto che è l'origine dell'evento.

eventCode
Int32

Identificatore associato all'evento. Deve essere maggiore della costante di campo WebExtendedBase.

exception
Exception

Oggetto Exception associato all'errore.

Esempio

Nell'esempio di codice seguente viene illustrato come usare questo costruttore.

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

Commenti

Questo costruttore consente di creare un WebRequestErrorEvent evento senza dover specificare informazioni dettagliate sul codice sull'evento stesso.

Si applica a

WebRequestErrorEvent(String, Object, Int32, Int32, Exception)

Inizializza la classe WebRequestErrorEvent con i parametri di evento specificati.

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)

Parametri

message
String

Descrizione dell'evento.

eventSource
Object

Oggetto che è l'origine dell'evento.

eventCode
Int32

Identificatore associato all'evento. Deve essere maggiore della costante di campo WebExtendedBase.

eventDetailCode
Int32

Identificatore del codice dei dettagli dell'evento.

exception
Exception

Oggetto Exception associato all'errore.

Esempio

Nell'esempio di codice seguente viene illustrato come usare questo costruttore.

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

Commenti

Usare questo costruttore se è necessario specificare informazioni dettagliate sul codice sull'evento.

Si applica a