Partager via


WebEventProvider.ProcessEvent(WebBaseEvent) Méthode

Définition

Traite l'événement passé au fournisseur.

public:
 abstract void ProcessEvent(System::Web::Management::WebBaseEvent ^ raisedEvent);
public abstract void ProcessEvent (System.Web.Management.WebBaseEvent raisedEvent);
abstract member ProcessEvent : System.Web.Management.WebBaseEvent -> unit
Public MustOverride Sub ProcessEvent (raisedEvent As WebBaseEvent)

Paramètres

raisedEvent
WebBaseEvent

L'objet WebBaseEvent à traiter.

Exemples

L'exemple de code suivant illustre l'implémentation de la méthode ProcessEvent. Cette méthode ajoute la représentation sous forme de chaîne personnalisée de l’événement à un fichier journal spécifique.


// Process the event that has been raised.
public override void ProcessEvent(WebBaseEvent raisedEvent)
{ 
    if (msgCounter < maxMsgNumber)
    {
        // Buffer the event information.
        msgBuffer.Enqueue(raisedEvent);
        // Increment the message counter.
        msgCounter += 1;
    }
    else
    {
        // Flush the buffer.
        Flush();
    }
}
' Process the event that has been raised.
Public Overrides Sub ProcessEvent( _
ByVal raisedEvent As WebBaseEvent)

    If msgCounter < maxMsgNumber Then
        ' Buffer the event information.
        msgBuffer.Enqueue(raisedEvent)
        ' Increment the message counter.
        msgCounter += 1
    Else
        ' Flush the buffer.
        Flush()
    End If

End Sub

Remarques

Il s’agit de la méthode qui ASP.NET appels de surveillance d’intégrité pour commencer à traiter l’événement.

S’applique à