WebApplicationLifetimeEvent 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 WebApplicationLifetimeEvent 類別的新執行個體。
多載
WebApplicationLifetimeEvent(String, Object, Int32) |
使用提供的參數來初始化 WebApplicationLifetimeEvent 類別。 |
WebApplicationLifetimeEvent(String, Object, Int32, Int32) |
使用提供的參數來初始化 WebApplicationLifetimeEvent 類別。 |
WebApplicationLifetimeEvent(String, Object, Int32)
使用提供的參數來初始化 WebApplicationLifetimeEvent 類別。
protected public:
WebApplicationLifetimeEvent(System::String ^ message, System::Object ^ eventSource, int eventCode);
protected internal WebApplicationLifetimeEvent (string message, object eventSource, int eventCode);
new System.Web.Management.WebApplicationLifetimeEvent : string * obj * int -> System.Web.Management.WebApplicationLifetimeEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer)
參數
- message
- String
與事件關聯的訊息。
- eventSource
- Object
做為事件來源的物件。
- eventCode
- Int32
與事件關聯的代碼。 當您實作自訂事件時,事件代碼必須大於 WebExtendedBase。
範例
下列程式碼範例示範如何在 WebApplicationLifetimeEvent 自訂健康情況事件中使用 ASP.NET 。 此程式碼範例主要是用來顯示要使用的正確語法。
// Invoked in case of events identified only by
// their event code.
public SampleWebApplicationLifetimeEvent(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
備註
此建構函式是由 ASP.NET 健全狀況監視系統在內部使用。 您永遠不會使用它來建立 類別的 WebApplicationLifetimeEvent 實例,但您可以在實作繼承自這個類別的自有事件種類時呼叫這個建構函式。
注意
建 WebApplicationLifetimeEvent 構函式並非直接從程式碼使用。 ASP.NET 會呼叫它。 您可以從 類別衍生 WebApplicationLifetimeEvent 時呼叫 WebApplicationLifetimeEvent 建構函式。
另請參閱
適用於
WebApplicationLifetimeEvent(String, Object, Int32, Int32)
使用提供的參數來初始化 WebApplicationLifetimeEvent 類別。
protected public:
WebApplicationLifetimeEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, int eventDetailCode);
protected internal WebApplicationLifetimeEvent (string message, object eventSource, int eventCode, int eventDetailCode);
new System.Web.Management.WebApplicationLifetimeEvent : string * obj * int * int -> System.Web.Management.WebApplicationLifetimeEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, eventDetailCode As Integer)
參數
- message
- String
與事件關聯的訊息。
- eventSource
- Object
做為事件來源的物件。
- eventCode
- Int32
與事件關聯的代碼。 當您實作自訂事件時,事件代碼必須大於 WebExtendedBase。
- eventDetailCode
- Int32
WebEventCodes 值,指定事件的詳細資料識別項。
範例
下列程式碼範例示範如何在 WebApplicationLifetimeEvent 自訂健康情況事件中使用 ASP.NET 。 此程式碼範例主要是用來顯示要使用的正確語法。
// Invoked in case of events identified by their
// event code.and related event detailed code.
public SampleWebApplicationLifetimeEvent(string msg,
object eventSource, int eventCode,
int eventDetailCode):
base(msg, eventSource, eventCode, eventDetailCode)
{
// 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 eventDetailCode As Integer)
MyBase.New(msg, eventSource, _
eventCode, eventDetailCode)
' Perform custom initialization.
customCreatedMsg = _
String.Format("Event created at: {0}", _
DateTime.Now.TimeOfDay.ToString())
End Sub
備註
此建構函式是由 ASP.NET 健全狀況監視系統在內部使用。 您永遠不會使用它來建立 類別的 WebApplicationLifetimeEvent 實例,但您可以在實作繼承自這個類別的自有事件種類時呼叫這個建構函式。
注意
建 WebApplicationLifetimeEvent 構函式並非直接從程式碼使用。 ASP.NET 會呼叫它。 您可以從 類別衍生 WebApplicationLifetimeEvent 時呼叫 WebApplicationLifetimeEvent 建構函式。