WebBaseErrorEvent Costruttori
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Inizializza una nuova istanza della classe WebBaseErrorEvent.
Overload
WebBaseErrorEvent(String, Object, Int32, Exception) |
Inizializza una nuova istanza della classe WebBaseErrorEvent. |
WebBaseErrorEvent(String, Object, Int32, Int32, Exception) |
Inizializza una nuova istanza della classe WebBaseErrorEvent. |
WebBaseErrorEvent(String, Object, Int32, Exception)
Inizializza una nuova istanza della 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)
Parametri
- message
- String
Descrizione dell'evento.
- eventSource
- Object
Oggetto che è l'origine dell'evento.
- eventCode
- Int32
Codice associato all'evento. Quando si implementa un evento personalizzato, il codice evento deve essere maggiore di WebExtendedBase.
Esempio
Nell'esempio di codice seguente viene illustrato come chiamare questo costruttore da un costruttore per la SampleWebBaseErrorEvent
WebBaseErrorEvent classe, una classe che deriva dalla 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
Commenti
Questo costruttore viene usato internamente dal sistema di monitoraggio dell'integrità ASP.NET. È possibile chiamare questo costruttore quando si implementa il proprio tipo di evento che eredita da questa classe.
Vedi anche
Si applica a
WebBaseErrorEvent(String, Object, Int32, Int32, Exception)
Inizializza una nuova istanza della 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)
Parametri
- message
- String
Descrizione dell'evento.
- eventSource
- Object
Oggetto che è l'origine dell'evento.
- eventCode
- Int32
Codice associato all'evento. Quando si implementa un evento personalizzato, il codice evento deve essere maggiore di WebExtendedBase.
- eventDetailCode
- Int32
Identificatore dettagliato dell'evento.
Esempio
Nell'esempio di codice seguente viene illustrato come chiamare questo costruttore da un costruttore per la SampleWebBaseErrorEvent
WebBaseErrorEvent classe, una classe che deriva dalla 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
Commenti
Questo costruttore viene usato internamente dal sistema di monitoraggio dell'integrità ASP.NET. È possibile chiamare questo costruttore quando si implementa il proprio tipo di evento che eredita da questa classe.