Retrieves a list of DicomDataSet that matches query parameters specified in a MatchingParameterCollection from the storage source.
public List<DicomDataSet> GetDicomDataSets(
MatchingParameterCollection matchingCollection
)
Public Function GetDicomDataSets(
ByVal matchingCollection As MatchingParameterCollection
) As List(Of DicomDataSet)
public:
List<DicomDataSet^>^ GetDicomDataSets(
MatchingParameterCollection^ matchingCollection
)
matchingCollection
A MatchingParameterCollection which includes the matching parameters for a query.
A List of DicomDataSet that corresponds to the query parameters specified in MatchingParameterCollection.
If no such DicomDataSet exists, an empty List is returned.
The MatchingParameterCollection can contain one or more MatchingParameterList.
Each MatchingParameterList can contain one or more ICatalogEntity.
For example, to create a MatchingParameterCollection to search for all instances of a particular PatientID, do the following:
string patientId = "12341234";
MatchingParameterCollection matchingCollection = new MatchingParameterCollection();
MatchingParameterList matchingList = new MatchingParameterList();
matchingCollection.Add(matchingList);
ICatalogEntity patientEntity = RegisteredEntities.GetPatientEntity(patientId);
matchingList.Add(patientEntity);
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