WebErrorEvent Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Inicializuje novou instanci WebErrorEvent třídy.
Přetížení
WebErrorEvent(String, Object, Int32, Exception) |
Inicializuje WebErrorEvent třídu pomocí zadaných parametrů. |
WebErrorEvent(String, Object, Int32, Int32, Exception) |
Inicializuje novou instanci WebErrorEvent třídy pomocí zadaných parametrů. |
WebErrorEvent(String, Object, Int32, Exception)
Inicializuje WebErrorEvent třídu pomocí zadaných parametrů.
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)
Parametry
- message
- String
Popis události.
- eventSource
- Object
Objekt, který je zdrojem události.
- eventCode
- Int32
Kód přidružený k události. Při implementaci vlastní události musí být kód události větší než WebExtendedBase.
Příklady
Následující příklad kódu ukazuje, jak přizpůsobit tento konstruktor.
// 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
Poznámky
Konstruktor WebErrorEvent není určen k použití přímo z kódu. Je volána ASP.NET. Konstruktor můžete volat WebErrorEvent při odvození z WebErrorEvent třídy.
Viz také
Platí pro
WebErrorEvent(String, Object, Int32, Int32, Exception)
Inicializuje novou instanci WebErrorEvent třídy pomocí zadaných parametrů.
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)
Parametry
- message
- String
Popis události.
- eventSource
- Object
Objekt, který je zdrojem události.
- eventCode
- Int32
Kód přidružený k události. Při implementaci vlastní události musí být kód události větší než WebExtendedBase.
- eventDetailCode
- Int32
Hodnota WebEventCodes , která určuje podrobný identifikátor události.
Příklady
Následující příklad kódu ukazuje, jak odvodit z WebErrorEvent třídy vytvořit vlastní událost.
// 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
Poznámky
Konstruktor WebErrorEvent není určen k použití přímo z kódu. Je volána ASP.NET. Konstruktor můžete volat WebErrorEvent při odvození z WebErrorEvent třídy.