- ds
- The contents of this DataSet to be saved
- fileName
- The name of the output xml file
- xmlFlags
- Flags that affect how binary data and other information is saved in the xml output file
- cb
- Optional callback that allows you to change the element names, attributes, and values of the xml output file
Visual Basic (Declaration) | |
---|---|
<ExtensionAttribute()> Overloads Public Shared Sub SaveXml( _ ByVal ds As DicomDataSet, _ ByVal fileName As String, _ ByVal xmlFlags As DicomDataSetSaveXmlFlags, _ ByVal cb As SaveXmlCallback _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
Dim ds As DicomDataSet Dim fileName As String Dim xmlFlags As DicomDataSetSaveXmlFlags Dim cb As SaveXmlCallback DicomExtensions.SaveXml(ds, fileName, xmlFlags, cb) |
C# | |
---|---|
[ExtensionAttribute()] public static void SaveXml( DicomDataSet ds, string fileName, DicomDataSetSaveXmlFlags xmlFlags, SaveXmlCallback cb ) |
C++/CLI | |
---|---|
[ExtensionAttribute()] public: static void SaveXml( DicomDataSet^ ds, String^ fileName, DicomDataSetSaveXmlFlags xmlFlags, SaveXmlCallback^ cb ) |
Parameters
- ds
- The contents of this DataSet to be saved
- fileName
- The name of the output xml file
- xmlFlags
- Flags that affect how binary data and other information is saved in the xml output file
- cb
- Optional callback that allows you to change the element names, attributes, and values of the xml output file
For an example, refer to DicomExtensions.LoadXml.
Use this method to export a Leadtools.Dicom.DicomDataSet as human-readable xml file. By default, all binary data is written using Base64 encoding, but this behavior can be modified by passing appropriate DicomDataSetSaveXmlFlags
The output xml file can be customized by passing the optional SaveXmlCallback delegate. For more information on this, see the documentation and example for SaveXmlCallback.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Reference
DicomExtensions ClassDicomExtensions Members
Overload List
LoadXml(DicomDataSet,String,DicomDataSetLoadXmlFlags,LoadXmlBeforeElementCallback,LoadXmlAfterElementCallback) Method
LoadXml(DicomDataSet,Stream,DicomDataSetLoadXmlFlags,LoadXmlBeforeElementCallback,LoadXmlAfterElementCallback) Method
LoadXml(DicomDataSet,String,DicomDataSetLoadXmlFlags) Method
LoadXml(DicomDataSet,Stream,DicomDataSetLoadXmlFlags) Method
SaveXml(DicomDataSet,String,DicomDataSetSaveXmlFlags,SaveXmlCallback) Method
SaveXml(DicomDataSet,Stream,DicomDataSetSaveXmlFlags,SaveXmlCallback) Method
SaveXml(DicomDataSet,String,DicomDataSetSaveXmlFlags) Method
SaveXml(DicomDataSet,Stream,DicomDataSetSaveXmlFlags) Method
SaveXmlCallback Delegate
LoadXmlBeforeElementCallback Delegate
LoadXmlAfterElementCallback Delegate