BufferedWebEventProvider.UseBuffering Property     
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether the provider is in buffered mode.
public:
 property bool UseBuffering { bool get(); };
	public bool UseBuffering { get; }
	member this.UseBuffering : bool
	Public ReadOnly Property UseBuffering As Boolean
	Property Value
true if the provider is in buffered mode; otherwise, false. The default is true.
Examples
The following code example shows how to use the UseBuffering property.
public bool SampleUseBuffering
{
    get { return UseBuffering; }
}
Public ReadOnly Property SampleUseBuffering() As Boolean
   Get
      Return UseBuffering
   End Get
 End Property
	Remarks
The UseBuffering property contains the value defined by the buffer attribute in the providers element of the healthMonitoring section.