Get the physical path of the DICOM files.
            
            
            
            
Syntax
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As IDICOMQuery
Dim studyInstanceUID As String
Dim seriesInstanceUID As String
Dim sopInstanceUID As String
Dim extraData As String
Dim value() As String
 
value = instance.GetDicomFileName(studyInstanceUID, seriesInstanceUID, sopInstanceUID, extraData)
  | 
 
            Parameters
- studyInstanceUID
 
- 
            A String representing the Study Instance UID to match the DICOM file. This parameter can be null.
            
 - seriesInstanceUID
 
- 
            A String representing the Series Instance UID to match the DICOM file. This parameter can be null.
            
 - sopInstanceUID
 
- 
            A String representing the SOP Instance UID to match the DICOM file. This parameter can be null.
            
 - extraData
 
- 
            User custom data.
            
 
            
             
            
            
            
            
Example
Please check our Medical Web Viewer demo, located in DICOMServicescs.csproj project.
            
            
            Remarks
            
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, Windows Server 2003 family, Windows Server 2008 family
 
            
            
See Also