BufferedWebEventProvider 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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 개체에 있지만이 클래스에서 상속 되는 공급자 형식을 구현 하는 경우이 생성자를 호출할 수 있습니다.