 | UpstreamDecisionSupportServiceAnalyze Method |
Instructs the implementation to analyze the data for collectedData according to the protocols specified in librariesToApply
Namespace: SanteDB.Client.UpstreamAssembly: SanteDB.Client (in SanteDB.Client.dll) Version: 3.0.2081-alpha+027e4605b77f83de5445cbcd55717223932d2452
Syntaxpublic IEnumerable<ICdssResult> Analyze(
IdentifiedData collectedData,
IDictionary<string, Object> parameters,
params ICdssLibrary[] librariesToApply
)
Public Function Analyze (
collectedData As IdentifiedData,
parameters As IDictionary(Of String, Object),
ParamArray librariesToApply As ICdssLibrary()
) As IEnumerable(Of ICdssResult)
public:
virtual IEnumerable<ICdssResult^>^ Analyze(
IdentifiedData^ collectedData,
IDictionary<String^, Object^>^ parameters,
... array<ICdssLibrary^>^ librariesToApply
) sealed
abstract Analyze :
collectedData : IdentifiedData *
parameters : IDictionary<string, Object> *
librariesToApply : ICdssLibrary[] -> IEnumerable<ICdssResult>
override Analyze :
collectedData : IdentifiedData *
parameters : IDictionary<string, Object> *
librariesToApply : ICdssLibrary[] -> IEnumerable<ICdssResult> Parameters
- collectedData IdentifiedData
- The collected data from the end user
- parameters IDictionaryString, Object
- The parameters to apply to the CDSS library
- librariesToApply ICdssLibrary
- The protocol(s) which should be used to evaluate or analyze the data
Return Value
IEnumerableICdssResultThe detected issues analyzed in the data
Implements
IDecisionSupportServiceAnalyze(IdentifiedData, IDictionaryString, Object, ICdssLibrary)
Remarks
If the
librariesToApply parameter is omitted, then the
Protocols from the
collectedData is used
as the list of protocols to be analyzed. A global analysis of the provided data can be requested using the
[!:AnalyzeGlobal(Act)]
See Also