DicomObjects.NET.V8
DicomObjects Namespace / DicomDataSet Class
Members



DicomDataSet Class
A DICOM data set
Syntax
public class DicomDataSet 
public ref class DicomDataSet 
'Declaration
 
Public Class DicomDataSet 
 
'Usage
 
Dim instance As DicomDataSet
Remarks

A DicomDataSet object holds a set of DicomAttributes, and constitutes the main set of data within DICOM. The content may be:

  • A composite instance (image or other persitent object)
  • A Command
  • An item in a sequence (in whch case it is part of a DicomDataSetCollection)

The consituent attributes may be accessed in many different ways:

  • By Group and Element - dataset[group, element]
  • By KeyWord - dataset[Keyword]
  • Sequentially by index - dataset[index]
  • Sequentially by using the iterator - foreach(DicomAttribute in dataset)

Inheritance Hierarchy

System.Object
   DicomObjects.DicomDataSet

Requirements

Target Platforms: .NET CLR 3.5 or higher

See Also