WebFailureAuditEvent 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 WebFailureAuditEvent třídy .
Přetížení
WebFailureAuditEvent(String, Object, Int32) |
Inicializuje novou instanci WebFailureAuditEvent třídy pomocí zadaných parametrů. |
WebFailureAuditEvent(String, Object, Int32, Int32) |
Inicializuje novou instanci WebFailureAuditEvent třídy pomocí zadaných parametrů. |
WebFailureAuditEvent(String, Object, Int32)
Inicializuje novou instanci WebFailureAuditEvent třídy pomocí zadaných parametrů.
protected public:
WebFailureAuditEvent(System::String ^ message, System::Object ^ eventSource, int eventCode);
protected internal WebFailureAuditEvent (string message, object eventSource, int eventCode);
new System.Web.Management.WebFailureAuditEvent : string * obj * int -> System.Web.Management.WebFailureAuditEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer)
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 volat tento konstruktor ve SampleWebFailureAuditEvent
třídě . Tento příklad kódu je součástí většího příkladu WebFailureAuditEvent pro přehled třídy.
// Invoked in case of events identified only by their event code.
public SampleWebFailureAuditEvent(string msg, object eventSource,
int eventCode):
base(msg, eventSource, eventCode)
{
// 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)
MyBase.New(msg, eventSource, eventCode)
' Perform custom initialization.
customCreatedMsg = String.Format("Event created at: {0}", _
DateTime.Now.TimeOfDay.ToString())
End Sub
Poznámky
Tento konstruktor používá interně ASP.NET systém pro monitorování stavu. Nikdy ho nepoužijete k vytvoření instance WebFailureAuditEvent, ale tento konstruktor můžete volat při implementaci vlastního typu události, který dědí z této třídy.
Platí pro
WebFailureAuditEvent(String, Object, Int32, Int32)
Inicializuje novou instanci WebFailureAuditEvent třídy pomocí zadaných parametrů.
protected public:
WebFailureAuditEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, int eventDetailCode);
protected internal WebFailureAuditEvent (string message, object eventSource, int eventCode, int eventDetailCode);
new System.Web.Management.WebFailureAuditEvent : string * obj * int * int -> System.Web.Management.WebFailureAuditEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, eventDetailCode As Integer)
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 volat tento konstruktor ve SampleWebFailureAuditEvent
třídě . Tento příklad kódu je součástí většího příkladu WebFailureAuditEvent pro přehled třídy.
// Invoked in case of events identified by their event code and
// event detailed code.
public SampleWebFailureAuditEvent(string msg, object eventSource,
int eventCode, int detailedCode):
base(msg, eventSource, eventCode, detailedCode)
{
// 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
' event detailed code.
Public Sub New(ByVal msg As String, ByVal eventSource As Object, _
ByVal eventCode As Integer, ByVal detailedCode As Integer)
MyBase.New(msg, eventSource, eventCode, detailedCode)
' Perform custom initialization.
customCreatedMsg = String.Format("Event created at: {0}", _
DateTime.Now.TimeOfDay.ToString())
End Sub
Poznámky
Tento konstruktor používá interně ASP.NET systém pro monitorování stavu. Nikdy ho nepoužijete k vytvoření instance WebFailureAuditEvent, ale tento konstruktor můžete volat při implementaci vlastního typu události, který dědí z této třídy.