Queries for the DICOM series information using matching parameters.
            
            
            
            
            
            
            
            
            'Declaration
 
Function FindSeries( _
   ByVal  As String, _
   ByVal  As String, _
   ByVal  As String, _
   ByVal  As String, _
   ByVal  As String, _
   ByVal  As Boolean, _
   ByVal  As Integer, _
   ByVal  As String _
) As DataSet
             
        
            
            'Usage
 
Dim instance As IDICOMQuery
Dim studyInstanceUID As String
Dim modality As String
Dim seriesNumber As String
Dim seriesInstanceUID As String
Dim sortField As String
Dim ascending As Boolean
Dim maxRows As Integer
Dim extraData As String
Dim value As DataSet
 
value = instance.FindSeries(studyInstanceUID, modality, seriesNumber, seriesInstanceUID, sortField, ascending, maxRows, extraData)
             
        
            
        
            
        
             
        
            Parameters
- studyInstanceUID
 
- A System.String representing the Study Instance UID for the queried series. This parameter can be null.
 - modality
 
- A System.String representing the modality name of the queried series. This parameter can be null.
 - seriesNumber
 
- A System.String representing the series number for the queried series. This parameter can be null.
 - seriesInstanceUID
 
- A System.String representing the Series Instance UID for the queried series. This parameter can be null.
 - sortField
 
- A System.String representing the field to perform sorting based on its values. This parameter can be null.
 - ascending
 
- 
            true to sort the returned results ascending, false to sort descending. This parameter can be null.
            
 - maxRows
 
- An System.Int32 value specifying the number of rows returned. pass -1 or null to return all results.
 - extraData
 
- 
            user custom data.
            
 
            
            Return Value
An ADO.NET 
System.Data.DataSet which contains the series information.