Visual Basic (Declaration) | |
---|---|
<XmlSchemaProviderAttribute(MethodName="GetTypedDataSetSchema", IsAny=False)> <ToolboxItemAttribute(ToolboxItemType=System.Drawing.Design.ToolboxItem, ToolboxItemTypeName="System.Drawing.Design.ToolboxItem, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")> <HelpKeywordAttribute("vs.data.DataSet")> <GeneratedCodeAttribute(Tool="System.Data.Design.TypedDataSetGenerator", Version="2.0.0.0")> <DesignerCategoryAttribute("code")> <XmlRootAttribute("DicomInformation")> <SerializableAttribute()> Public Class DicomInformation Inherits DataSet |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
[XmlSchemaProviderAttribute(MethodName="GetTypedDataSetSchema", IsAny=false)] [ToolboxItemAttribute(ToolboxItemType=System.Drawing.Design.ToolboxItem, ToolboxItemTypeName="System.Drawing.Design.ToolboxItem, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] [HelpKeywordAttribute("vs.data.DataSet")] [GeneratedCodeAttribute(Tool="System.Data.Design.TypedDataSetGenerator", Version="2.0.0.0")] [DesignerCategoryAttribute("code")] [XmlRootAttribute("DicomInformation")] [SerializableAttribute()] public class DicomInformation : DataSet |
C++/CLI | |
---|---|
[XmlSchemaProviderAttribute(MethodName="GetTypedDataSetSchema", IsAny=false)] [ToolboxItemAttribute(ToolboxItemType=System.Drawing.Design.ToolboxItem, ToolboxItemTypeName="System.Drawing.Design.ToolboxItem, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] [HelpKeywordAttribute("vs.data.DataSet")] [GeneratedCodeAttribute(Tool="System.Data.Design.TypedDataSetGenerator", Version="2.0.0.0")] [DesignerCategoryAttribute("code")] [XmlRootAttribute("DicomInformation")] [SerializableAttribute()] public ref class DicomInformation : public DataSet |
Visual Basic | Copy Code |
---|---|
<Test> _ |
C# | Copy Code |
---|---|
public void StoreDICOMImages ( ) |
This class inherits from the DataSet class to define the tables and relations which represent how the DICOM information is stored and retrieved.
The DicomInformation class contains four strongly typed tables:
- DicomInformation.PatientsDataTable
- DicomInformation.StudiesDataTable
- DicomInformation.SeriesDataTable
- DicomInformation.ImagesDataTable
Each DataTable is related to another table with a foreign key relationship.
The DicomInformation.StudiesDataTable has a foreign key relation with the DicomInformation.PatientsDataTable using the DicomInformation.StudiesDataTable.PatientIDColumn column.
The DicomInformation.SeriesDataTable has a foreign key relation with the DicomInformation.StudiesDataTable using the DicomInformation.SeriesDataTable.StudyInstanceUIDColumn column.
The DicomInformation.ImagesDataTable has a foreign key relation with the DicomInformation.SeriesDataTable using the DicomInformation+ImagesDataTable.SeriesInstanceUIDColumn column.
System.Object
System.ComponentModel.MarshalByValueComponent
System.Data.DataSet
Leadtools.Medical.Workstation.DataAccessLayer.DicomInformation
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family