Leadtools.Dicom.WCF Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.25
FindSeriesObjects Method
See Also 
Leadtools.Dicom.WCF Namespace > DICOMService Class : FindSeriesObjects Method



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 or 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.
maxObjects
An System.Int32 value specifying the number of Leadtools.Dicom.Services.DataTypes.Series objects returned. pass -1 to return all results.
extraData
user custom data.
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 or 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.
maxObjects
An System.Int32 value specifying the number of Leadtools.Dicom.Services.DataTypes.Series objects returned. pass -1 to return all results.
extraData
user custom data.
Queries for the DICOM series information using matching parameters.

Syntax

Visual Basic (Declaration) 
Public Function FindSeriesObjects( _
   ByVal studyInstanceUID As String, _
   ByVal modality As String, _
   ByVal seriesNumber As String, _
   ByVal seriesInstanceUID As String, _
   ByVal sortField As String, _
   ByVal ascending As Boolean, _
   ByVal maxObjects As Integer, _
   ByVal extraData As String _
) As Series()
Visual Basic (Usage)Copy Code
Dim instance As DICOMService
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 maxObjects As Integer
Dim extraData As String
Dim value() As Series
 
value = instance.FindSeriesObjects(studyInstanceUID, modality, seriesNumber, seriesInstanceUID, sortField, ascending, maxObjects, extraData)
C# 
public Series[] FindSeriesObjects( 
   string studyInstanceUID,
   string modality,
   string seriesNumber,
   string seriesInstanceUID,
   string sortField,
   bool ascending,
   int maxObjects,
   string extraData
)
C++/CLI 
public:
array<Series^>^ FindSeriesObjects( 
   String^ studyInstanceUID,
   String^ modality,
   String^ seriesNumber,
   String^ seriesInstanceUID,
   String^ sortField,
   bool ascending,
   int maxObjects,
   String^ 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 or 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.
maxObjects
An System.Int32 value specifying the number of Leadtools.Dicom.Services.DataTypes.Series objects returned. pass -1 to return all results.
extraData
user custom data.

Return Value

All Leadtools.Dicom.Services.DataTypes.Series objects found for the provided matching parameters.

Requirements

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

See Also