WebApplicationLifetimeEvent Costruttori

Definizione

Inizializza una nuova istanza della classe WebApplicationLifetimeEvent.

Overload

WebApplicationLifetimeEvent(String, Object, Int32)

Inizializza la classe WebApplicationLifetimeEvent utilizzando i parametri specificati.

WebApplicationLifetimeEvent(String, Object, Int32, Int32)

Inizializza la classe WebApplicationLifetimeEvent utilizzando i parametri specificati.

WebApplicationLifetimeEvent(String, Object, Int32)

Inizializza la classe WebApplicationLifetimeEvent utilizzando i parametri specificati.

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)

Parametri

message
String

Messaggio associato all'evento.

eventSource
Object

Oggetto che è l'origine dell'evento.

eventCode
Int32

Codice associato all'evento. Quando si implementa un evento personalizzato, il codice evento deve essere maggiore di WebExtendedBase.

Esempio

Nell'esempio di codice seguente viene illustrato come usare l'oggetto WebApplicationLifetimeEvent in un evento di integrità personalizzato ASP.NET. Questo esempio di codice è destinato principalmente a mostrare la sintassi corretta da usare.

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

Commenti

Questo costruttore viene usato internamente dal sistema di monitoraggio dell'integrità ASP.NET. Non verrà mai usato per creare un'istanza della WebApplicationLifetimeEvent classe, ma è possibile chiamare questo costruttore quando si implementa il proprio tipo di evento che eredita da questa classe.

Nota

Il WebApplicationLifetimeEvent costruttore non deve essere usato direttamente dal codice. Viene chiamato da ASP.NET. È possibile chiamare il WebApplicationLifetimeEvent costruttore quando deriva dalla WebApplicationLifetimeEvent classe.

Vedi anche

Si applica a

WebApplicationLifetimeEvent(String, Object, Int32, Int32)

Inizializza la classe WebApplicationLifetimeEvent utilizzando i parametri specificati.

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)

Parametri

message
String

Messaggio associato all'evento.

eventSource
Object

Oggetto che è l'origine dell'evento.

eventCode
Int32

Codice associato all'evento. Quando si implementa un evento personalizzato, il codice evento deve essere maggiore di WebExtendedBase.

eventDetailCode
Int32

Valore WebEventCodes che specifica l'identificatore dettagliato dell'evento.

Esempio

Nell'esempio di codice seguente viene illustrato come usare l'oggetto WebApplicationLifetimeEvent in un evento di integrità personalizzato ASP.NET. Questo esempio di codice è destinato principalmente a mostrare la sintassi corretta da usare.

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

Commenti

Questo costruttore viene usato internamente dal sistema di monitoraggio dell'integrità ASP.NET. Non verrà mai usato per creare un'istanza della WebApplicationLifetimeEvent classe, ma è possibile chiamare questo costruttore quando si implementa il proprio tipo di evento che eredita da questa classe.

Nota

Il WebApplicationLifetimeEvent costruttore non deve essere usato direttamente dal codice. Viene chiamato da ASP.NET. È possibile chiamare il WebApplicationLifetimeEvent costruttore quando deriva dalla WebApplicationLifetimeEvent classe.

Vedi anche

Si applica a