BufferedWebEventProvider.UseBuffering Property

Definition

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.

Applies to