WebEventProvider Konstruktor
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje nowe wystąpienie klasy WebEventProvider.
protected:
WebEventProvider();
protected WebEventProvider ();
Protected Sub New ()
Przykłady
Poniższy przykład kodu pokazuje, jak używać tego konstruktora w niestandardowym dostawcy zdarzeń.
// Initializes the provider.
public SampleEventProvider(): base()
{
// Initialize the local path of the file
// that holds event information.
logFilePath = "C:/test/log.doc";
// Clear the message buffer.
msgBuffer.Clear();
// Initialize the max number of messages
// to buffer.
maxMsgNumber = 10;
// More custom initialization goes here.
}
' Initializes the provider.
Public Sub New()
' Initialize the local path of the file
' that holds event information.
logFilePath = "C:/test/log.doc"
' Clear the message buffer.
msgBuffer.Clear()
' Initialize the max number of messages
' to buffer.
maxMsgNumber = 10
End Sub
' More custom initialization goes here.
Uwagi
Konstruktor WebEventProvider nie jest przeznaczony do użycia bezpośrednio z kodu. Jest wywoływana przez ASP.NET. Konstruktor można wywołać WebEventProvider podczas wyprowadzania z WebEventProvider klasy .