DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomDataSet Class
Members



In This Topic
    DicomDataSet Class
    In This Topic
    A DICOM data set
    Object Model
    DicomDataSet ClassDicomAttribute Class
    Syntax
    'Declaration
     
    
    <DefaultMemberAttribute("Item")>
    Public Class DicomDataSet 
    'Usage
     
    
    Dim instance As DicomDataSet
    [DefaultMember("Item")]
    public class DicomDataSet 
    [DefaultMember("Item")]
    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 persistent object)
    • A Command
    • An item in a sequence (in which case it is part of a DicomDataSetCollection)

    The constituent 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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also