PerformedProcedureStepExists Method

Summary
Determines whether the Procedure Step exists.
Syntax
C#
C++/CLI
[FaultContractAttribute(System.Type)] 
[OperationContractAttribute()] 
public bool PerformedProcedureStepExists( 
   string affectedSOPInstanceUID 
) 
[FaultContractAttribute(DetailType=Leadtools.Medical.Worklist.Wcf.Utils.ApplicationFault,  
   Action="",  
   Name="",  
   Namespace="",  
   ProtectionLevel=ProtectionLevel.None,  
   HasProtectionLevel=false)] 
[OperationContractAttribute()] 
bool PerformedProcedureStepExists(  
   String^ affectedSOPInstanceUID 
)  

Parameters

affectedSOPInstanceUID
The affected SOP instance UID.

Return Value

True if the performed procedure step having the specified Affected SOP instance exists; False otherwise.

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.