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



studyInstanceUID
The Study Instance UID of the series to find. This value can be null or System.String.Empty.
modality
The name of the Modality. This value can be null or System.String.Empty.
seriesNumber
The text representation of the series number search parameter. This value can be null or System.String.Empty.
seriesInstanceUID
The Series Instance UID of the series to find. This value can be null or System.String.Empty.
extraData
User custom data.
studyInstanceUID
The Study Instance UID of the series to find. This value can be null or System.String.Empty.
modality
The name of the Modality. This value can be null or System.String.Empty.
seriesNumber
The text representation of the series number search parameter. This value can be null or System.String.Empty.
seriesInstanceUID
The Series Instance UID of the series to find. This value can be null or System.String.Empty.
extraData
User custom data.
Queries for a DICOM Series information using search parameters.

Syntax

Visual Basic (Declaration) 
Public Function FindSeries( _
   ByVal studyInstanceUID As String, _
   ByVal modality As String, _
   ByVal seriesNumber As String, _
   ByVal seriesInstanceUID As String, _
   ByVal extraData As String _
) As DataSet
Visual Basic (Usage)Copy Code
Dim instance As DicomWCFStreamer
Dim studyInstanceUID As String
Dim modality As String
Dim seriesNumber As String
Dim seriesInstanceUID As String
Dim extraData As String
Dim value As DataSet
 
value = instance.FindSeries(studyInstanceUID, modality, seriesNumber, seriesInstanceUID, extraData)
C# 
public DataSet FindSeries( 
   string studyInstanceUID,
   string modality,
   string seriesNumber,
   string seriesInstanceUID,
   string extraData
)
C++/CLI 
public:
DataSet^ FindSeries( 
   String^ studyInstanceUID,
   String^ modality,
   String^ seriesNumber,
   String^ seriesInstanceUID,
   String^ extraData
) 

Parameters

studyInstanceUID
The Study Instance UID of the series to find. This value can be null or System.String.Empty.
modality
The name of the Modality. This value can be null or System.String.Empty.
seriesNumber
The text representation of the series number search parameter. This value can be null or System.String.Empty.
seriesInstanceUID
The Series Instance UID of the series to find. This value can be null or System.String.Empty.
extraData
User custom data.

Return Value

An ADO.NET System.Data.DataSet which contains one table with the rows that matches the search criteria.

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