| MatchResultT Constructor |
Creates a new match result
Namespace:
SanteDB.Matcher.Matchers
Assembly:
SanteDB.Matcher (in SanteDB.Matcher.dll) Version: 2.2.1
Syntax public MatchResult(
T record,
double score,
double strength,
string configurationName,
RecordMatchClassification classification,
RecordMatchMethod method,
IEnumerable<IRecordMatchVector> vectors
)
Public Sub New (
record As T,
score As Double,
strength As Double,
configurationName As String,
classification As RecordMatchClassification,
method As RecordMatchMethod,
vectors As IEnumerable(Of IRecordMatchVector)
)
public:
MatchResult(
T record,
double score,
double strength,
String^ configurationName,
RecordMatchClassification classification,
RecordMatchMethod method,
IEnumerable<IRecordMatchVector^>^ vectors
)
new :
record : 'T *
score : float *
strength : float *
configurationName : string *
classification : RecordMatchClassification *
method : RecordMatchMethod *
vectors : IEnumerable<IRecordMatchVector> -> MatchResult
Parameters
- record
- Type: T
The record that was classified - score
- Type: SystemDouble
The assigned score - strength
- Type: SystemDouble
The relative strength (0 .. 1) of the match given the maximum score the match could have gotten - configurationName
- Type: SystemString
The name of the configuration used to score - classification
- Type: SanteDB.Core.MatchingRecordMatchClassification
The classification - method
- Type: SanteDB.Core.MatchingRecordMatchMethod
The method that was used to establish the match - vectors
- Type: System.Collections.GenericIEnumerableIRecordMatchVector
The matching attribute and scores
See Also