Leadtools.Medical.Worklist.Wcf.Service Namespace > BrokerService Class : HandleUnscheduledMPPS Method |
public void HandleUnscheduledMPPS( string mppsSOPInstanceUID, string scheduledProcedureStepID )
'Declaration Public Sub HandleUnscheduledMPPS( _ ByVal mppsSOPInstanceUID As String, _ ByVal scheduledProcedureStepID As String _ )
'Usage Dim instance As BrokerService Dim mppsSOPInstanceUID As String Dim scheduledProcedureStepID As String instance.HandleUnscheduledMPPS(mppsSOPInstanceUID, scheduledProcedureStepID)
public void HandleUnscheduledMPPS( string mppsSOPInstanceUID, string scheduledProcedureStepID )
function Leadtools.Medical.Worklist.Wcf.Service.BrokerService.HandleUnscheduledMPPS( mppsSOPInstanceUID , scheduledProcedureStepID )
public: void HandleUnscheduledMPPS( String^ mppsSOPInstanceUID, String^ scheduledProcedureStepID )
Public Sub MiscelleaneousTest() Try Dim uids As List(Of String) = New List(Of String)(_BrokerService.GetUnscheduledPerformedProcedureStepUIDs()) If uids.Contains("987.654.3210000") Then _BrokerService.HandleUnscheduledMPPS("987.654.3210000", "123.456.89000000") End If Console.WriteLine("Exists: " & _BrokerService.PerformedProcedureStepExists("987.654.3210000").ToString()) Catch e As Exception Console.WriteLine(e.Message) End Try End Sub
public void MiscelleaneousTest() { try { List<string> uids = new List<string>(_BrokerService.GetUnscheduledPerformedProcedureStepUIDs()); if (uids.Contains("987.654.3210000")) { _BrokerService.HandleUnscheduledMPPS("987.654.3210000", "123.456.89000000"); } Console.WriteLine("Exists: " + _BrokerService.PerformedProcedureStepExists("987.654.3210000").ToString()); } catch (Exception e) { Console.WriteLine(e.Message); } }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2