PerformedProcedureStepExists Method

Summary
Specifies whether the procedure step exists.
Syntax
C#
C++/CLI
public bool PerformedProcedureStepExists( 
   string affectedSOPInstanceUID 
) 
public: 
bool PerformedProcedureStepExists(  
   String^ affectedSOPInstanceUID 
)  

Parameters

affectedSOPInstanceUID
The affected SOP instance UID.

Return Value

True if the performed procedure step with the specified affected SOP instance exists; otherwise, false.

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.