- ds
- The Data Set being saved
- stream
- The stream where the output xml file is written
- xmlFlags
- Flags that affect how binary data and other information is saved in the xml output file
Visual Basic (Declaration) | |
---|---|
<ExtensionAttribute()> Overloads Public Shared Sub SaveXml( _ ByVal ds As DicomDataSet, _ ByVal stream As Stream, _ ByVal xmlFlags As DicomDataSetSaveXmlFlags _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
Dim ds As DicomDataSet Dim stream As Stream Dim xmlFlags As DicomDataSetSaveXmlFlags DicomExtensions.SaveXml(ds, stream, xmlFlags) |
C# | |
---|---|
[ExtensionAttribute()] public static void SaveXml( DicomDataSet ds, Stream stream, DicomDataSetSaveXmlFlags xmlFlags ) |
C++/CLI | |
---|---|
[ExtensionAttribute()] public: static void SaveXml( DicomDataSet^ ds, Stream^ stream, DicomDataSetSaveXmlFlags xmlFlags ) |
Parameters
- ds
- The Data Set being saved
- stream
- The stream where the output xml file is written
- xmlFlags
- Flags that affect how binary data and other information is saved in the xml output file
For an example, refer to Leadtools.Dicom.Common.Extensions.DicomExtensions.LoadXml.
Use this method to save a Leadtools.Dicom.DicomDataSet as an xml stream. 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