Aracılığıyla paylaş


WebBaseErrorEvent Oluşturucular

Tanım

WebBaseErrorEvent sınıfının yeni bir örneğini başlatır.

Aşırı Yüklemeler

WebBaseErrorEvent(String, Object, Int32, Exception)

WebBaseErrorEvent sınıfının yeni bir örneğini başlatır.

WebBaseErrorEvent(String, Object, Int32, Int32, Exception)

WebBaseErrorEvent sınıfının yeni bir örneğini başlatır.

WebBaseErrorEvent(String, Object, Int32, Exception)

WebBaseErrorEvent sınıfının yeni bir örneğini başlatır.

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)

Parametreler

message
String

Olay açıklaması.

eventSource
Object

Olayın kaynağı olan nesne.

eventCode
Int32

Olayla ilişkili kod. Özel bir olay uyguladığınızda, olay kodu değerinden WebExtendedBasebüyük olmalıdır.

e
Exception

Hatayla Exception ilişkili.

Örnekler

Aşağıdaki kod örneği, sınıfından türetilen bir sınıf olan sınıfı için SampleWebBaseErrorEvent bir oluşturucudan bu oluşturucunun nasıl çağrıldığını WebBaseErrorEvent gösterir.

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

Açıklamalar

Bu oluşturucu, ASP.NET sistem durumu izleme sistemi tarafından dahili olarak kullanılır. Bu sınıftan devralan kendi olay türünü uygularken bu oluşturucuyu çağırabilirsiniz.

Ayrıca bkz.

Şunlara uygulanır

WebBaseErrorEvent(String, Object, Int32, Int32, Exception)

WebBaseErrorEvent sınıfının yeni bir örneğini başlatır.

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)

Parametreler

message
String

Olay açıklaması.

eventSource
Object

Olayın kaynağı olan nesne.

eventCode
Int32

Olayla ilişkili kod. Özel bir olay uyguladığınızda, olay kodu değerinden WebExtendedBasebüyük olmalıdır.

eventDetailCode
Int32

Olayın ayrıntılı tanımlayıcısı.

e
Exception

Hatayla Exception ilişkili.

Örnekler

Aşağıdaki kod örneği, sınıfından türetilen bir sınıf olan sınıfı için SampleWebBaseErrorEvent bir oluşturucudan bu oluşturucunun nasıl çağrıldığını WebBaseErrorEvent gösterir.

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

Açıklamalar

Bu oluşturucu, ASP.NET sistem durumu izleme sistemi tarafından dahili olarak kullanılır. Bu sınıftan devralan kendi olay türünü uygularken bu oluşturucuyu çağırabilirsiniz.

Ayrıca bkz.

Şunlara uygulanır