Retrieves a list of DicomDataSet that matches the specified PatientID, StudyInstanceUID, SeriesInstanceUID, and SOPInstanceUID from the storage source.
public List<DicomDataSet> GetDicomDataSets(
string patientId,
string studyInstanceUid,
string seriesInstanceUid,
string sopInstanceUid
)
Public Function GetDicomDataSets(
ByVal patientId As String,
ByVal studyInstanceUid As String,
ByVal seriesInstanceUid As String,
ByVal sopInstanceUid As String
) As List(Of DicomDataSet)
public:
List<DicomDataSet^>^ GetDicomDataSets(
String^ patientId,
String^ studyInstanceUid,
String^ seriesInstanceUid,
String^ sopInstanceUid
)
patientId
The PatientID of the DicomDataSet to be retrieved. This value can be an empty string.
studyInstanceUid
The StudyInstanceUID of the DicomDataSet to be retrieved. This value can be an empty string.
seriesInstanceUid
The SeriesInstanceUID of the DicomDataSet to be retrieved. This value can be an empty string.
sopInstanceUid
The SOPInstanceUID of the DicomDataSet to be retrieved. This value can be an empty string.
A List of DicomDataSet that contains the specified patientId, studyInstanceUid, seriesInstanceUid, and sopInstanceUid.
If no such DicomDataSet exists, an empty List is returned.
The returned List of DicomDataSet must match all of the specified parameters. However, any of the parameters can be an empty string, which is equivalent to a wild card.
For example, to retrieve all DicomDataSet for a particular patient, do the following:
List<DicomDataSet> dsList;
string patientId = "12341234";
dsList = agent.GetDicomDataSets(patientId, string.Empty, string.Empty, string.Empty);
For an example, refer to IStorageDataAccessAgent5.
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document