次の方法で共有


BufferedWebEventProvider コンストラクター

定義

BufferedWebEventProvider クラスの新しいインスタンスを初期化します。

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

次のコード例は、カスタム イベント プロバイダーでこのコンストラクターを使用する方法を示しています。

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

注釈

このコンストラクターは、ASP.NET 正常性監視システムによって内部的に使用されます。 オブジェクトのインスタンス化 TraceWebEventProvider には使用しませんが、このクラスから継承する独自のプロバイダー型を実装するときに、このコンストラクターを呼び出すことができます。

適用対象