System::Xml::XmlDocument::Save method
Contents
[
Hide
]XmlDocument::Save(SharedPtr<IO::Stream>) method
Saves the XML document to the specified stream.
virtual void System::Xml::XmlDocument::Save(SharedPtr<IO::Stream> outStream)
Parameter | Type | Description |
---|---|---|
outStream | SharedPtr<IO::Stream> | The stream to which you want to save. |
See Also
- Typedef SharedPtr
- Class Stream
- Class XmlDocument
- Namespace System::Xml
- Library Aspose.TeX for C++
XmlDocument::Save(SharedPtr<IO::TextWriter>) method
Saves the XML document to the specified TextWriter.
virtual void System::Xml::XmlDocument::Save(SharedPtr<IO::TextWriter> writer)
Parameter | Type | Description |
---|---|---|
writer | SharedPtr<IO::TextWriter> | The TextWriter to which you want to save. |
See Also
- Typedef SharedPtr
- Class TextWriter
- Class XmlDocument
- Namespace System::Xml
- Library Aspose.TeX for C++
XmlDocument::Save(SharedPtr<XmlWriter>) method
Saves the XML document to the specified XmlWriter.
virtual void System::Xml::XmlDocument::Save(SharedPtr<XmlWriter> w)
Parameter | Type | Description |
---|---|---|
w | SharedPtr<XmlWriter> | The XmlWriter to which you want to save. |
See Also
- Typedef SharedPtr
- Class XmlWriter
- Class XmlDocument
- Namespace System::Xml
- Library Aspose.TeX for C++
XmlDocument::Save(String) method
Saves the XML document to the specified file. If the specified file exists, this method overwrites it.
virtual void System::Xml::XmlDocument::Save(String filename)
Parameter | Type | Description |
---|---|---|
filename | String | The location of the file where you want to save the document. |
See Also
- Class String
- Class XmlDocument
- Namespace System::Xml
- Library Aspose.TeX for C++