 | BaseRecordMatchingServiceBlockT Method |
Perform the record matching services
Namespace: SanteDB.Matcher.MatchersAssembly: SanteDB.Matcher (in SanteDB.Matcher.dll) Version: 3.0.2081-alpha+c89b6faf865d37596ce49c6b3119b280fbaa425a
Syntaxpublic virtual IQueryResultSet<T> Block<T>(
T input,
string configurationName,
IEnumerable<Guid> ignoreKeys,
IRecordMatchingDiagnosticSession collector = null
)
where T : IdentifiedData
Public Overridable Function Block(Of T As IdentifiedData) (
input As T,
configurationName As String,
ignoreKeys As IEnumerable(Of Guid),
Optional collector As IRecordMatchingDiagnosticSession = Nothing
) As IQueryResultSet(Of T)
public:
generic<typename T>
where T : IdentifiedData
virtual IQueryResultSet<T>^ Block(
T input,
String^ configurationName,
IEnumerable<Guid>^ ignoreKeys,
IRecordMatchingDiagnosticSession^ collector = nullptr
)
abstract Block :
input : 'T *
configurationName : string *
ignoreKeys : IEnumerable<Guid> *
?collector : IRecordMatchingDiagnosticSession
(* Defaults:
let _collector = defaultArg collector null
*)
-> IQueryResultSet<'T> when 'T : IdentifiedData
override Block :
input : 'T *
configurationName : string *
ignoreKeys : IEnumerable<Guid> *
?collector : IRecordMatchingDiagnosticSession
(* Defaults:
let _collector = defaultArg collector null
*)
-> IQueryResultSet<'T> when 'T : IdentifiedDataParameters
- input T
- The input to be blocked
- configurationName String
- The name of the configuration to use
- ignoreKeys IEnumerableGuid
- The keys to ignore for blocking
- collector IRecordMatchingDiagnosticSession (Optional)
- The collector to use for diagnostics
Type Parameters
- T
- The type of object to be classified
Return Value
IQueryResultSetTThe blocked records
Implements
IRecordMatchingServiceBlockT(T, String, IEnumerableGuid, IRecordMatchingDiagnosticSession)
See Also