WebErrorEvent Oluşturucular
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
WebErrorEvent sınıfının yeni bir örneğini başlatır.
Aşırı Yüklemeler
WebErrorEvent(String, Object, Int32, Exception) |
WebErrorEvent Sağlanan parametreleri kullanarak sınıfı başlatır. |
WebErrorEvent(String, Object, Int32, Int32, Exception) |
Sağlanan parametreleri kullanarak sınıfının yeni bir örneğini WebErrorEvent başlatır. |
WebErrorEvent(String, Object, Int32, Exception)
WebErrorEvent Sağlanan parametreleri kullanarak sınıfı başlatır.
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)
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.
Örnekler
Aşağıdaki kod örneğinde bu oluşturucunun nasıl özelleştirileceği gösterilmektedir.
// 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
Açıklamalar
Oluşturucunun WebErrorEvent doğrudan kodunuzdan kullanılması amaçlanmamıştır. ASP.NET tarafından çağrılır. sınıfından WebErrorEvent türetilirken oluşturucuyu WebErrorEvent çağırabilirsiniz.
Ayrıca bkz.
Şunlara uygulanır
WebErrorEvent(String, Object, Int32, Int32, Exception)
Sağlanan parametreleri kullanarak sınıfının yeni bir örneğini WebErrorEvent başlatır.
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)
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 WebEventCodes ayrıntılı tanımlayıcısını belirten değer.
Örnekler
Aşağıdaki kod örneği, özel bir olay oluşturmak için sınıfından WebErrorEvent türetme işlemini gösterir.
// 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
Açıklamalar
Oluşturucunun WebErrorEvent doğrudan kodunuzdan kullanılması amaçlanmamıştır. ASP.NET tarafından çağrılır. sınıfından WebErrorEvent türetilirken oluşturucuyu WebErrorEvent çağırabilirsiniz.