Partager via


BufferedWebEventProvider Constructeur

Définition

Initialise une nouvelle instance de la classe BufferedWebEventProvider.

protected:
 BufferedWebEventProvider();
protected BufferedWebEventProvider ();
Protected Sub New ()

Exemples

L’exemple de code suivant montre comment utiliser ce constructeur dans un fournisseur d’événements personnalisé.

public SampleBufferedWebEventProvider()
{
    // Perform local initializations.

    // Path of local file where to store 
    // event info.
    // Assure that the path works for you and
    // that the right permissions are set.
    logFilePath = "C:/test/log.doc";
    
    // Instantiate buffer to contain 
    // local data.
    customInfo = new StringBuilder();
}
Public Sub New()
   ' Perform local initializations.
   ' Path of local file where to store 
   ' event info.
   ' Assure that the path works for you and
   ' that the right permissions are set.
   logFilePath = "C:/test/log.doc"
   
   ' Instantiate buffer to contain 
   ' local data.
   customInfo = New StringBuilder()
End Sub

Remarques

Ce constructeur est utilisé en interne par le système de surveillance de l’intégrité ASP.NET. Vous ne l’utiliserez jamais pour instancier un TraceWebEventProvider objet, mais vous pouvez appeler ce constructeur lors de l’implémentation de votre propre type de fournisseur qui hérite de cette classe.

S’applique à