BufferedWebEventProvider Construtor

Definição

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

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

Exemplos

O exemplo de código a seguir mostra como usar esse construtor em um provedor de eventos personalizado.The following code example shows how to use this constructor in a custom event provider.

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
 

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 de um TraceWebEventProvider objeto, mas você pode chamar esse construtor ao implementar seu próprio tipo de provedor que herda dessa classe.You will never use it to instantiate a TraceWebEventProvider object, but you can call this constructor when implementing your own provider type that inherits from this class.

Aplica-se a