|
PerformanceCounterSampleFilter Property
|
Gets or sets an optional custom sample filter function. Can be used to skip sampled values that are unreasonable.
Namespace: GSF.DiagnosticsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntaxpublic Func<float, bool> SampleFilter { get; set; }
Public Property SampleFilter As Func(Of Single, Boolean)
Get
Set
public:
property Func<float, bool>^ SampleFilter {
Func<float, bool>^ get ();
void set (Func<float, bool>^ value);
}
member SampleFilter : Func<float32, bool> with get, set
function get_SampleFilter();
function set_SampleFilter(value);
View SourceProperty Value
FuncSingle,
Boolean
Remarks
Return true if sample should be filtered; otherwise, false.
See Also