Udostępnij za pośrednictwem


WebEventProvider Konstruktor

Definicja

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 .

Dotyczy