Query for a DICOM Series information using search parameters.
Syntax
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)
|
Parameters
- studyInstanceUID
-
The Study Instance UID of the series to find. This value can be null or Empty.
- modality
-
The name of the Modality. This value can be null or Empty.
- seriesNumber
-
The text representation of the series number search parameter. This value can be null or Empty.
- seriesInstanceUID
-
The Series Instance UID of the series to find. This value can be null or Empty.
- extraData
-
User custom data.
Return Value
An ADO.NET
DataSet which contains one table with the rows that matches the search criteria.
Example
Please check our Medical Web Viewer demo, located in WinForms.csproj project.
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also