WebRequestErrorEvent 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.
WebRequestErrorEvent sınıfının yeni bir örneğini başlatır.
Aşırı Yüklemeler
WebRequestErrorEvent(String, Object, Int32, Exception) |
WebRequestErrorEvent Sınıfı belirtilen olay parametreleriyle başlatır. |
WebRequestErrorEvent(String, Object, Int32, Int32, Exception) |
WebRequestErrorEvent Sınıfı belirtilen olay parametreleriyle başlatır. |
Açıklamalar
Olay kodunuzu veya tanımlayıcınızı tanımlamak için kullandığınız değer alan sabitinden WebExtendedBase büyük olmalıdır.
WebRequestErrorEvent(String, Object, Int32, Exception)
WebRequestErrorEvent Sınıfı belirtilen olay parametreleriyle başlatır.
protected public:
WebRequestErrorEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, Exception ^ exception);
protected internal WebRequestErrorEvent (string message, object eventSource, int eventCode, Exception exception);
new System.Web.Management.WebRequestErrorEvent : string * obj * int * Exception -> System.Web.Management.WebRequestErrorEvent
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 tanımlayıcı. Alan sabitinden WebExtendedBase büyük olmalıdır.
Örnekler
Aşağıdaki kod örneğinde bu oluşturucunun nasıl kullanılacağı gösterilmektedir.
// Invoked in case of events
// identified only by their event code.
public SampleWebRequestErrorEvent(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
Bu oluşturucu, olayın kendisi hakkında ayrıntılı kod bilgileri belirtmenize gerek kalmadan bir WebRequestErrorEvent olay oluşturmanıza olanak tanır.
Şunlara uygulanır
WebRequestErrorEvent(String, Object, Int32, Int32, Exception)
WebRequestErrorEvent Sınıfı belirtilen olay parametreleriyle başlatır.
protected public:
WebRequestErrorEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, int eventDetailCode, Exception ^ exception);
protected internal WebRequestErrorEvent (string message, object eventSource, int eventCode, int eventDetailCode, Exception exception);
new System.Web.Management.WebRequestErrorEvent : string * obj * int * int * Exception -> System.Web.Management.WebRequestErrorEvent
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 tanımlayıcı. Alan sabitinden WebExtendedBase büyük olmalıdır.
- eventDetailCode
- Int32
Olay ayrıntı kodu tanımlayıcısı.
Örnekler
Aşağıdaki kod örneğinde bu oluşturucunun nasıl kullanılacağı gösterilmektedir.
// Invoked in case of events identified
// by their event code.and related event
// detailed code.
public SampleWebRequestErrorEvent(
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
Olay hakkında ayrıntılı kod bilgileri belirtmeniz gerekiyorsa bu oluşturucuyu kullanın.