Create a Confidence Querylet with default values.


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

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal qlet As NetricsQuery,  _ 
   ByVal match_score_cutoff As Double _ 
)
C#
public ConfidenceQlt(
   NetricsQuery qlet,
   double match_score_cutoff
)
C++
public:
 ConfidenceQlt(
   NetricsQuery qlet,
   double match_score_cutoff
) sealed 
J#
public ConfidenceQlt(
   NetricsQuery qlet,
   double match_score_cutoff
)
JScript
public function ConfidenceQlt(
   qlet : NetricsQuery,
   match_score_cutoff : double
)

Parameters

qlet
the querylet.
match_score_cutoff
the match score cutoff value. This is the score that forms the boundary between what is considered a match and what isn't a match. If the value is given as -1.0 the absolute cutoff value for the search is used. If the search has no absolute cutoff set, either in the search opts, or via a Learn Model threshold, then the -1.0 cutoff value is treated as an error by the Patterns server.

Remarks

The default values for the confidence cutoff is DFLT_CONFIDENCE_CUTOFF defined in this class. The default value for the preindex flag is true.

throws ArgumentException if qlet is null or match_score_cutoff is less than 0.0 or greater than 1.0.

See Also