SPSystemPerformanceMonitor.ValueIsExcessive property

When implemented in a derived class, gets a value that indicates whether the value of the underlying performance measure is poor enough to trigger throttling of requests.

Namespace:  Microsoft.SharePoint.Utilities
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
Public MustOverride ReadOnly Property ValueIsExcessive As Boolean
    Get
'Usage
Dim instance As SPSystemPerformanceMonitor
Dim value As Boolean

value = instance.ValueIsExcessive
public abstract bool ValueIsExcessive { get; }

Property value

Type: System.Boolean
true if the value is bad enough to trigger throttling; otherwise, false.

Implements

ISPPerformanceMonitor.ValueIsExcessive

Remarks

Notes to implementers

Your implementation need not evaluate the value of the underlying performance measure directly. You can also have a system that translates performance values into health scores. The health score, in turn, determines the value of the ValueIsExcessive property. See, for example, the built-in derived class SPSystemPerformanceCounterMonitor.

See also

Reference

SPSystemPerformanceMonitor class

SPSystemPerformanceMonitor members

Microsoft.SharePoint.Utilities namespace