GetUnscheduledPerformedProcedureStepUIDs Method

Summary
Gets a list of the unscheduled performed procedure step UIDs.
Syntax
C#
C++/CLI
public string[] GetUnscheduledPerformedProcedureStepUIDs() 
public: 
array<String^>^ GetUnscheduledPerformedProcedureStepUIDs();  

Return Value

An array of unscheduled performed procedure step UIDs.

Example
C#
using Leadtools; 
using Leadtools.Medical.Worklist.Wcf.Service; 
using Leadtools.Medical.Worklist.DataAccessLayer.MatchingParameters; 
using Leadtools.Dicom; 
using Leadtools.Medical.Worklist.Wcf.Entities; 
 
 
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); 
   } 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Medical.Worklist.Wcf Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.