WebApplicationLifetimeEvent Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Inicializa una nueva instancia de la clase WebApplicationLifetimeEvent.
Sobrecargas
WebApplicationLifetimeEvent(String, Object, Int32) |
Inicializa la clase WebApplicationLifetimeEvent usando los parámetros proporcionados. |
WebApplicationLifetimeEvent(String, Object, Int32, Int32) |
Inicializa la clase WebApplicationLifetimeEvent usando los parámetros proporcionados. |
WebApplicationLifetimeEvent(String, Object, Int32)
Inicializa la clase WebApplicationLifetimeEvent usando los parámetros proporcionados.
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)
Parámetros
- message
- String
Mensaje asociado al evento.
- eventSource
- Object
El objeto que es el origen del evento.
- eventCode
- Int32
Código asociado al evento. Cuando se implementa un evento personalizado, el código del evento debe ser mayor que WebExtendedBase.
Ejemplos
En el ejemplo de código siguiente se muestra cómo usar WebApplicationLifetimeEvent en un evento de mantenimiento personalizado ASP.NET . Este ejemplo de código está pensado principalmente para mostrar la sintaxis correcta que se va a usar.
// 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
Comentarios
El sistema ASP.NET de supervisión de estado usa internamente este constructor. Nunca lo usará para crear una instancia de la WebApplicationLifetimeEvent clase , pero puede llamar a este constructor al implementar su propio tipo de evento que hereda de esta clase.
Nota
El WebApplicationLifetimeEvent constructor no está pensado para usarse directamente desde el código. Lo llama ASP.NET. Puede llamar al WebApplicationLifetimeEvent constructor al derivar de la WebApplicationLifetimeEvent clase .
Consulte también
Se aplica a
WebApplicationLifetimeEvent(String, Object, Int32, Int32)
Inicializa la clase WebApplicationLifetimeEvent usando los parámetros proporcionados.
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)
Parámetros
- message
- String
Mensaje asociado al evento.
- eventSource
- Object
El objeto que es el origen del evento.
- eventCode
- Int32
Código asociado al evento. Cuando se implementa un evento personalizado, el código del evento debe ser mayor que WebExtendedBase.
- eventDetailCode
- Int32
Valor de WebEventCodes, que especifica el identificador detallado del evento.
Ejemplos
En el ejemplo de código siguiente se muestra cómo usar WebApplicationLifetimeEvent en un evento de mantenimiento personalizado ASP.NET . Este ejemplo de código está pensado principalmente para mostrar la sintaxis correcta que se va a usar.
// 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
Comentarios
El sistema ASP.NET de supervisión de estado usa internamente este constructor. Nunca lo usará para crear una instancia de la WebApplicationLifetimeEvent clase , pero puede llamar a este constructor al implementar su propio tipo de evento que hereda de esta clase.
Nota
El WebApplicationLifetimeEvent constructor no está pensado para usarse directamente desde el código. Lo llama ASP.NET. Puede llamar al WebApplicationLifetimeEvent constructor al derivar de la WebApplicationLifetimeEvent clase .