WebFailureAuditEvent Construtores

Definição

Inicializa uma nova instância da classe WebFailureAuditEvent.Initializes a new instance of the WebFailureAuditEvent class.

Sobrecargas

WebFailureAuditEvent(String, Object, Int32)

Inicializa uma nova instância da classe WebFailureAuditEvent usando os parâmetros fornecidos.Initializes a new instance of the WebFailureAuditEvent class using the supplied parameters.

WebFailureAuditEvent(String, Object, Int32, Int32)

Inicializa uma nova instância da classe WebFailureAuditEvent usando os parâmetros fornecidos.Initializes a new instance of the WebFailureAuditEvent class using the supplied parameters.

WebFailureAuditEvent(String, Object, Int32)

Inicializa uma nova instância da classe WebFailureAuditEvent usando os parâmetros fornecidos.Initializes a new instance of the WebFailureAuditEvent class using the supplied parameters.

protected public:
 WebFailureAuditEvent(System::String ^ message, System::Object ^ eventSource, int eventCode);
protected internal WebFailureAuditEvent (string message, object eventSource, int eventCode);
new System.Web.Management.WebFailureAuditEvent : string * obj * int -> System.Web.Management.WebFailureAuditEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer)

Parâmetros

message
String

A descrição do evento.The event description.

eventSource
Object

O objeto que é a origem do evento.The object that is the source of the event.

eventCode
Int32

O código associado ao evento.The code associated with the event. Quando você implementar um evento personalizado, o código de evento deverá ser maior que WebExtendedBase.When you implement a custom event, the event code must be greater than WebExtendedBase.

Exemplos

O exemplo de código a seguir mostra como chamar esse construtor na SampleWebFailureAuditEvent classe.The following code example shows how to call this constructor in the SampleWebFailureAuditEvent class. Este exemplo de código é parte de um exemplo maior fornecido para a WebFailureAuditEvent visão geral da classe.This code example is part of a larger example provided for the WebFailureAuditEvent class overview.

// Invoked in case of events identified only by their event code.
public SampleWebFailureAuditEvent(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

Comentários

Esse construtor é usado internamente pelo sistema de monitoramento de integridade ASP.NET.This constructor is used internally by the ASP.NET health-monitoring system. Você nunca vai usá-lo para criar uma instância do WebFailureAuditEvent , mas você pode chamar esse construtor ao implementar seu próprio tipo de evento que herda dessa classe.You will never use it to create an instance of WebFailureAuditEvent, but you can call this constructor when implementing your own event type that inherits from this class.

Aplica-se a

WebFailureAuditEvent(String, Object, Int32, Int32)

Inicializa uma nova instância da classe WebFailureAuditEvent usando os parâmetros fornecidos.Initializes a new instance of the WebFailureAuditEvent class using the supplied parameters.

protected public:
 WebFailureAuditEvent(System::String ^ message, System::Object ^ eventSource, int eventCode, int eventDetailCode);
protected internal WebFailureAuditEvent (string message, object eventSource, int eventCode, int eventDetailCode);
new System.Web.Management.WebFailureAuditEvent : string * obj * int * int -> System.Web.Management.WebFailureAuditEvent
Protected Friend Sub New (message As String, eventSource As Object, eventCode As Integer, eventDetailCode As Integer)

Parâmetros

message
String

A descrição do evento.The event description.

eventSource
Object

O objeto que é a origem do evento.The object that is the source of the event.

eventCode
Int32

O código associado ao evento.The code associated with the event. Quando você implementar um evento personalizado, o código de evento deverá ser maior que WebExtendedBase.When you implement a custom event, the event code must be greater than WebExtendedBase.

eventDetailCode
Int32

O valor de WebEventCodes que especifica o identificador detalhado do evento.The WebEventCodes value that specifies the detailed identifier for the event.

Exemplos

O exemplo de código a seguir mostra como chamar esse construtor na SampleWebFailureAuditEvent classe.The following code example shows how to call this constructor in the SampleWebFailureAuditEvent class. Este exemplo de código é parte de um exemplo maior fornecido para a WebFailureAuditEvent visão geral da classe.This code example is part of a larger example provided for the WebFailureAuditEvent class overview.

// Invoked in case of events identified by their event code and 
// event detailed code.
public SampleWebFailureAuditEvent(string msg, object eventSource,
    int eventCode, int detailedCode):
base(msg, eventSource, eventCode, detailedCode)
{
    // 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 
' event detailed code.
Public Sub New(ByVal msg As String, ByVal eventSource As Object, _
ByVal eventCode As Integer, ByVal detailedCode As Integer)
    MyBase.New(msg, eventSource, eventCode, detailedCode)
    ' Perform custom initialization.
    customCreatedMsg = String.Format("Event created at: {0}", _
    DateTime.Now.TimeOfDay.ToString())

End Sub


Comentários

Esse construtor é usado internamente pelo sistema de monitoramento de integridade ASP.NET.This constructor is used internally by the ASP.NET health-monitoring system. Você nunca vai usá-lo para criar uma instância do WebFailureAuditEvent , mas você pode chamar esse construtor ao implementar seu próprio tipo de evento que herda dessa classe.You will never use it to create an instance of WebFailureAuditEvent, but you can call this constructor when implementing your own event type that inherits from this class.

Aplica-se a