Saves an object as XML to a stream using the specified serialization interface.
Syntax
Visual Basic (Usage) | Copy Code |
---|
Dim o As Object
Dim saveInterface As Type
Dim stream As Stream
Dim rootElement As String
Dim callingAssembly As Assembly
Dim value As Boolean
value = Serializer.SaveObject(o, saveInterface, stream, rootElement, callingAssembly) |
Parameters
- o
- Object to save (must implement the specified serialization interface)
- saveInterface
- Serialization interface to use (must be ISerializeSupport, ISerializeSettings, ISerializeData, ISerializeStyles, ISerializeDrawing, or ISerializePresentation)
- stream
- Stream to save object to
- rootElement
- Name of root XML element
- callingAssembly
- Calling assembly
Return Value
true if successful;
false otherwise
Requirements
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
See Also