다음을 통해 공유


BufferedWebEventProvider 생성자

정의

BufferedWebEventProvider 클래스의 새 인스턴스를 초기화합니다.

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

예제

다음 코드 예제에서는 사용자 지정 이벤트 공급자에서이 생성자를 사용 하는 방법을 보여 줍니다.

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

설명

이 생성자는 ASP.NET 상태 모니터링 시스템에서 내부적으로 사용 됩니다. 인스턴스화를 사용 하지 것입니다는 TraceWebEventProvider 개체에 있지만이 클래스에서 상속 되는 공급자 형식을 구현 하는 경우이 생성자를 호출할 수 있습니다.

적용 대상