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)
Available in Sandboxed Solutions: No
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