BufferedWebEventProvider Constructor

Definition

Initializes a new instance of the BufferedWebEventProvider class.

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

Examples

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

Remarks

This constructor is used internally by the ASP.NET health-monitoring system. 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.

Applies to