LEADTOOLS Medical (Leadtools.Dicom.Web assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.25
FindObjectInstanceEx Method
See Also 
Leadtools.Dicom.Web Namespace > DicomWCFStreamer Class : FindObjectInstanceEx Method



studyInstanceUID
The Study Instance UID of the DICOM object to find. This value can be null or System.String.Empty.
seriesInstanceUID
The Series Instance UID for the DICOM object to query. This value can be null or System.String.Empty.
instanceNumber
The string representation of the DICOM Instance Number to search on. This value can be null or System.String.Empty.
SOPInstanceUID
The SOP Instance UID of the DICOM object. This value can be null or System.String.Empty.
extraData
Custom user data.
studyInstanceUID
The Study Instance UID of the DICOM object to find. This value can be null or System.String.Empty.
seriesInstanceUID
The Series Instance UID for the DICOM object to query. This value can be null or System.String.Empty.
instanceNumber
The string representation of the DICOM Instance Number to search on. This value can be null or System.String.Empty.
SOPInstanceUID
The SOP Instance UID of the DICOM object. This value can be null or System.String.Empty.
extraData
Custom user data.
Queries for DICOM objects information based on search parameters.

Syntax

Visual Basic (Declaration) 
Public Function FindObjectInstanceEx( _
   ByVal studyInstanceUID As String, _
   ByVal seriesInstanceUID As String, _
   ByVal instanceNumber As String, _
   ByVal SOPInstanceUID As String, _
   ByVal extraData As String _
) As ObjectInstanceInformationEx()
Visual Basic (Usage)Copy Code
Dim instance As DicomWCFStreamer
Dim studyInstanceUID As String
Dim seriesInstanceUID As String
Dim instanceNumber As String
Dim SOPInstanceUID As String
Dim extraData As String
Dim value() As ObjectInstanceInformationEx
 
value = instance.FindObjectInstanceEx(studyInstanceUID, seriesInstanceUID, instanceNumber, SOPInstanceUID, extraData)

Parameters

studyInstanceUID
The Study Instance UID of the DICOM object to find. This value can be null or System.String.Empty.
seriesInstanceUID
The Series Instance UID for the DICOM object to query. This value can be null or System.String.Empty.
instanceNumber
The string representation of the DICOM Instance Number to search on. This value can be null or System.String.Empty.
SOPInstanceUID
The SOP Instance UID of the DICOM object. This value can be null or System.String.Empty.
extraData
Custom user data.

Return Value

An array of ObjectInstanceInformationEx containing the information found for each DICOM instance.

Example

Refer to the Medical Web Viewer demo in the WorkstationWebViewer project.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also