Leadtools.Dicom Namespace > DicomUidTable Class : LoadXmlAsync Method |
public IAsyncAction LoadXmlAsync( ILeadStream stream )
'Declaration Public Function LoadXmlAsync( _ ByVal stream As ILeadStream _ ) As IAsyncAction
'Usage Dim instance As DicomUidTable Dim stream As ILeadStream Dim value As IAsyncAction value = instance.LoadXmlAsync(stream)
public IAsyncAction LoadXmlAsync( ILeadStream stream )
ObjectiveC Syntax
function Leadtools.Dicom.DicomUidTable.LoadXmlAsync( stream )
public: IAsyncAction^ LoadXmlAsync( ILeadStream^ stream )
For more information, see the topic Working with DICOM Tables
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
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