BufferedWebEventProvider Oluşturucu
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
BufferedWebEventProvider sınıfının yeni bir örneğini başlatır.
protected:
BufferedWebEventProvider();
protected BufferedWebEventProvider ();
Protected Sub New ()
Örnekler
Aşağıdaki kod örneği, bu oluşturucunun özel bir olay sağlayıcısında nasıl kullanılacağını gösterir.
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
Açıklamalar
Bu oluşturucu, ASP.NET sistem durumu izleme sistemi tarafından dahili olarak kullanılır. Hiçbir zaman bir TraceWebEventProvider nesne örneği oluşturmak için kullanmazsınız, ancak bu sınıftan devralan kendi sağlayıcı türünüzü uygularken bu oluşturucuyu çağırabilirsiniz.