GetRequiredProcedureEvent provide the targeted ProcedureEvent from given ProcedureEvent list by identifying through methodCode.

Namespace: SmartCDSSKBLibrary.khu.kbmlm
Assembly: SmartCDSSKBLibrary (in SmartCDSSKBLibrary.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
protected ProcedureEvent GetRequiredProcedureEvent(
	List<ClinicalStatement> procList,
	string methodCode
)
Visual Basic
Protected Function GetRequiredProcedureEvent ( 
	procList As List(Of ClinicalStatement),
	methodCode As String
) As ProcedureEvent
Visual C++
protected:
ProcedureEvent^ GetRequiredProcedureEvent(
	List<ClinicalStatement^>^ procList, 
	String^ methodCode
)
F#
member GetRequiredProcedureEvent : 
        procList : List<ClinicalStatement> * 
        methodCode : string -> ProcedureEvent 

Parameters

procList
Type: System.Collections.Generic..::..List<(Of <(<'ClinicalStatement>)>)>
List of ProcedureEvent provided by consumer application
methodCode
Type: System..::..String
Intended ID of ProcedureEvent

Return Value

Type: ProcedureEvent
ProcedureEvent which have specified methodCode mentioned in 'methodCode' parameter. It will return null if ProcedureEvent if 'methodCode' is not found. In case of exception, the error message is logged at MLMParseError

See Also