Return search results until there is gap between adjacent records.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Sub useSimpleGapCutoff( _ 
   ByVal val As Double _ 
)
C#
public void useSimpleGapCutoff(
   double val
)
C++
public:
 void useSimpleGapCutoff(
   double val
) sealed 
J#
public void useSimpleGapCutoff(
   double val
)
JScript
public  function useSimpleGapCutoff(
   val : double
)

Parameters

val
The percentage of the first record's score which will be used to look for a gap between the scores of consecutive records below which no records will be returned. (Valid range is from 0.0 to 100.0)

Remarks

This cutoff returns the first match and all records until a gap is found between the scores of consecutive records greater than a certain percentage of the score of the first record.

See Also