DicomObjects.NET.V8
DicomObjects Namespace / DicomDataSet Class
Members



In This Topic
    DicomDataSet Class
    In This Topic
    A DICOM data set
    Syntax
    'Declaration
     
    Public Class DicomDataSet 
    'Usage
     
    Dim instance As DicomDataSet
    public class DicomDataSet 
    public ref class 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 4.0 or higher

    See Also