WebEventProvider Конструктор

Определение

Инициализирует новый экземпляр класса WebEventProvider.

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

Примеры

В следующем примере кода показано, как использовать этот конструктор в пользовательском поставщике событий.

// 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.

Комментарии

WebEventProvider Конструктор не предназначен для использования непосредственно из кода. Она вызывается ASP.NET. Конструктор можно вызвать WebEventProvider при наследовательстве WebEventProvider от класса.

Применяется к