Udostępnij za pośrednictwem


BufferedWebEventProvider Konstruktor

Definicja

Inicjuje nowe wystąpienie klasy BufferedWebEventProvider.

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

Przykłady

W poniższym przykładzie kodu pokazano, jak używać tego konstruktora u niestandardowego dostawcy zdarzeń.

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

Uwagi

Ten konstruktor jest używany wewnętrznie przez system monitorowania kondycji ASP.NET. Nigdy nie użyjesz go do utworzenia TraceWebEventProvider wystąpienia obiektu, ale można wywołać ten konstruktor podczas implementowania własnego typu dostawcy, który dziedziczy po tej klasie.

Dotyczy