 | IDecisionSupportServiceAnalyzeGlobal Method |
Instructs the implementation to analyze the data provided in collectedData using every registered clinical protocol in the
SanteDB instance.
Namespace: SanteDB.Core.ServicesAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
SyntaxIEnumerable<ICdssResult> AnalyzeGlobal(
IdentifiedData collectedData,
IDictionary<string, Object> parameters
)
Function AnalyzeGlobal (
collectedData As IdentifiedData,
parameters As IDictionary(Of String, Object)
) As IEnumerable(Of ICdssResult)
IEnumerable<ICdssResult^>^ AnalyzeGlobal(
IdentifiedData^ collectedData,
IDictionary<String^, Object^>^ parameters
)
abstract 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
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