WebFailureAuditEvent Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje nowe wystąpienie klasy WebFailureAuditEvent.
Przeciążenia
WebFailureAuditEvent(String, Object, Int32) |
Inicjuje WebFailureAuditEvent nowe wystąpienie klasy przy użyciu podanych parametrów. |
WebFailureAuditEvent(String, Object, Int32, Int32) |
Inicjuje WebFailureAuditEvent nowe wystąpienie klasy przy użyciu podanych parametrów. |
WebFailureAuditEvent(String, Object, Int32)
Inicjuje WebFailureAuditEvent nowe wystąpienie klasy przy użyciu podanych parametrów.
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
Opis zdarzenia.
- eventSource
- Object
Obiekt, który jest źródłem zdarzenia.
- eventCode
- Int32
Kod skojarzony ze zdarzeniem. Podczas implementowania zdarzenia niestandardowego kod zdarzenia musi być większy niż WebExtendedBase.
Przykłady
Poniższy przykład kodu pokazuje, jak wywołać ten konstruktor w SampleWebFailureAuditEvent
klasie. Ten przykład kodu jest częścią większego przykładu podanego WebFailureAuditEvent na potrzeby przeglądu klasy.
// 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
Uwagi
Ten konstruktor jest używany wewnętrznie przez system monitorowania kondycji ASP.NET. Nigdy nie użyjesz go do utworzenia wystąpienia WebFailureAuditEventklasy , ale możesz wywołać ten konstruktor podczas implementowania własnego typu zdarzenia dziedziczonego z tej klasy.
Dotyczy
WebFailureAuditEvent(String, Object, Int32, Int32)
Inicjuje WebFailureAuditEvent nowe wystąpienie klasy przy użyciu podanych parametrów.
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
Opis zdarzenia.
- eventSource
- Object
Obiekt, który jest źródłem zdarzenia.
- eventCode
- Int32
Kod skojarzony ze zdarzeniem. Podczas implementowania zdarzenia niestandardowego kod zdarzenia musi być większy niż WebExtendedBase.
- eventDetailCode
- Int32
Wartość WebEventCodes określająca szczegółowy identyfikator zdarzenia.
Przykłady
Poniższy przykład kodu pokazuje, jak wywołać ten konstruktor w SampleWebFailureAuditEvent
klasie. Ten przykład kodu jest częścią większego przykładu podanego WebFailureAuditEvent na potrzeby przeglądu klasy.
// 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
Uwagi
Ten konstruktor jest używany wewnętrznie przez system monitorowania kondycji ASP.NET. Nigdy nie użyjesz go do utworzenia wystąpienia WebFailureAuditEventklasy , ale możesz wywołać ten konstruktor podczas implementowania własnego typu zdarzenia dziedziczonego z tej klasy.