WebApplicationLifetimeEvent 构造函数

定义

初始化 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

示例

下面的代码示例演示如何在 ASP.NET 自定义运行状况事件中使用 WebApplicationLifetimeEvent 。 此代码示例主要用于显示要使用的正确语法。

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

示例

下面的代码示例演示如何在 ASP.NET 自定义运行状况事件中使用 WebApplicationLifetimeEvent 。 此代码示例主要用于显示要使用的正确语法。

// 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 构造函数。

另请参阅

适用于