LEADTOOLS Medical (Leadtools.Dicom assembly)
LEAD Technologies, Inc

LoadXml(Stream) Method

Example 







A Stream that contains the XML data containing the DICOM UIDs to load
Loads the UIDs contained in stream into the internal DICOM UID Table. .NET support Silverlight support
Syntax
public void LoadXml( 
   Stream stream
)
'Declaration
 
Public Overloads Sub LoadXml( _
   ByVal stream As Stream _
) 
'Usage
 
Dim instance As DicomUidTable
Dim stream As Stream
 
instance.LoadXml(stream)
public void LoadXml( 
   Stream stream
)
ObjectiveC Syntax
 function Leadtools.Dicom.DicomUidTable.LoadXml(Stream)( 
   stream 
)
public:
void LoadXml( 
   Stream^ stream
) 

Parameters

stream
A Stream that contains the XML data containing the DICOM UIDs to load
Remarks
Beginning with version 17.5 of the toolkit, you can easily and quickly customize the DICOM UID table by editing the dicTableUid.xml file that is found in the LEADTOOLS Sample Images folder. The dicTableUid.xml file is a human-readable XML file that lists all of the DICOM UIDs currently defined in the DICOM Specification. You can edit this with any text editor (for example, notepad) to add or remove DICOM UIDs. Then call LoadXml(String) and pass the full path of the dicTableUid.xml file, or pass a System.IO.Stream containing the contents of this file. Note that calling LoadXml(String) will first remove all DICOM UIDs that are already present in the table.

For more information, see the topic Working with DICOM Tables

Example
Copy CodeCopy Code  
Public Sub TestDicomUidTable_LoadXml_Stream()
         DicomEngine.Startup()

         'Remove all entries from the table
         DicomUidTable.Instance.Reset()

         ' Since the table is empty, the count is zero.
         Dim count As Integer = DicomUidTable.Instance.GetCount()

         ' Load the UID table from the dicTableUid.xml file that ships with the toolkit
         Using stream As New FileStream("C:\Users\Public\Documents\LEADTOOLS Images\dicTableUid.xml", FileMode.Open)
             DicomUidTable.Instance.LoadXml(stream)

             ' Get the count -- it will be 295
             count = DicomUidTable.Instance.GetCount()
         End Using
         DicomEngine.Shutdown()
     End Sub
public void TestDicomUidTable_LoadXml_Stream()
{
   DicomEngine.Startup();

   //Remove all entries from the table
   DicomUidTable.Instance.Reset();

   // Since the table is empty, the count is zero.
   int count = DicomUidTable.Instance.GetCount();

   // Load the UID table from the dicTableUid.xml file that ships with the toolkit
   using (FileStream stream = new FileStream(@"C:\Users\Public\Documents\LEADTOOLS Images\dicTableUid.xml", FileMode.Open))
   {
      DicomUidTable.Instance.LoadXml(stream);

      // Get the count -- it will be 295
      count = DicomUidTable.Instance.GetCount();
   }
   DicomEngine.Shutdown();
}
public void TestDicomUidTable_LoadXml_Stream(FileStream stream)
{
   DicomEngine.Startup();
   //Remove all entries from the table
   DicomUidTable.Instance.Reset();

   // Since the table is empty, the count is zero.
   int count = DicomUidTable.Instance.GetCount();

   // Load the UID table from  a stream that contains the contents of the dicTableUid.xml file that ships with the toolkit
   DicomUidTable.Instance.LoadXml(stream);

   // Get the count -- it will be 295
   count = DicomUidTable.Instance.GetCount();
   DicomEngine.Shutdown();
}
Public Sub TestDicomUidTable_LoadXml_Stream(ByVal stream As FileStream)
  DicomEngine.Startup()
  'Remove all entries from the table
  DicomUidTable.Instance.Reset()

  ' Since the table is empty, the count is zero.
  Dim count As Integer = DicomUidTable.Instance.GetCount()

  ' Load the UID table from  a stream that contains the contents of the dicTableUid.xml file that ships with the toolkit
  DicomUidTable.Instance.LoadXml(stream)

  ' Get the count -- it will be 295
  count = DicomUidTable.Instance.GetCount()
  DicomEngine.Shutdown()
End Sub
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

Reference

DicomUidTable Class
DicomUidTable Members
Overload List
Insert Method
Delete Method
Reset Method
Default Method

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.

Leadtools.Dicom requires a Medical toolkit server license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features