次の方法で共有


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すことができます。

適用対象