BufferedWebEventProvider コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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 には使用しませんが、このクラスから継承する独自のプロバイダー型を実装するときに、このコンストラクターを呼び出すことができます。