 | MatchResultT Constructor |
Creates a new match result
Namespace: SanteDB.Matcher.MatchersAssembly: SanteDB.Matcher (in SanteDB.Matcher.dll) Version: 3.0.2081-alpha+c89b6faf865d37596ce49c6b3119b280fbaa425a
Syntaxpublic MatchResult(
T record,
double score,
double strength,
IRecordMatchingConfiguration configuration,
RecordMatchClassification classification,
RecordMatchMethod method,
IEnumerable<IRecordMatchVector> vectors
)
Public Sub New (
record As T,
score As Double,
strength As Double,
configuration As IRecordMatchingConfiguration,
classification As RecordMatchClassification,
method As RecordMatchMethod,
vectors As IEnumerable(Of IRecordMatchVector)
)
public:
MatchResult(
T record,
double score,
double strength,
IRecordMatchingConfiguration^ configuration,
RecordMatchClassification classification,
RecordMatchMethod method,
IEnumerable<IRecordMatchVector^>^ vectors
)
new :
record : 'T *
score : float *
strength : float *
configuration : IRecordMatchingConfiguration *
classification : RecordMatchClassification *
method : RecordMatchMethod *
vectors : IEnumerable<IRecordMatchVector> -> MatchResultParameters
- record T
- The record that was classified
- score Double
- The assigned score
- strength Double
- The relative strength (0 .. 1) of the match given the maximum score the match could have gotten
- configuration IRecordMatchingConfiguration
- The name of the configuration used to score
- classification RecordMatchClassification
- The classification
- method RecordMatchMethod
- The method that was used to establish the match
- vectors IEnumerableIRecordMatchVector
- The matching attribute and scores
See Also