 | SimpleDecisionSupportServiceAnalyzeGlobal Method |
Instructs the implementation to analyze the data provided in collectedData using every registered clinical protocol in the
SanteDB instance.
Namespace: SanteDB.Core.CdssAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
Syntaxpublic IEnumerable<ICdssResult> AnalyzeGlobal(
IdentifiedData collectedData,
IDictionary<string, Object> parameters
)
Public Function AnalyzeGlobal (
collectedData As IdentifiedData,
parameters As IDictionary(Of String, Object)
) As IEnumerable(Of ICdssResult)
public:
virtual IEnumerable<ICdssResult^>^ AnalyzeGlobal(
IdentifiedData^ collectedData,
IDictionary<String^, Object^>^ parameters
) sealed
abstract AnalyzeGlobal :
collectedData : IdentifiedData *
parameters : IDictionary<string, Object> -> IEnumerable<ICdssResult>
override AnalyzeGlobal :
collectedData : IdentifiedData *
parameters : IDictionary<string, Object> -> IEnumerable<ICdssResult> Parameters
- collectedData IdentifiedData
- The collected data which is to be analyzed
- parameters IDictionaryString, Object
- The parameters to apply to the CDSS library
Return Value
IEnumerableICdssResultThe detected issues in the analyzed data
Implements
IDecisionSupportServiceAnalyzeGlobal(IdentifiedData, IDictionaryString, Object)
RemarksThis method, while more computationally intensive, allows the CDSS planner to analyze the data elements for all possible protocols which apply to collectedData
See Also