Piece Together XML stream

  • Thread starter Thread starter Randy
  • Start date Start date
R

Randy

I'm trying to develop a DLL with a set of classes that all accept arguments
in the constructor and have a Function which returns a chunk of XML. I plan
to create a wrapper class that will create new instances of these small
classes, call the Build_Xml function, and combine everything into the final
XML document.



My only question is what .NET objects are best suited for this system? A
little sample code would be much appreciated.



Thanks,



-Randy
 
I'm trying to develop a DLL with a set of classes that all accept arguments
in the constructor and have a Function which returns a chunk of XML. I plan
to create a wrapper class that will create new instances of these small
classes, call the Build_Xml function, and combine everything into the final
XML document.

My only question is what .NET objects are best suited for this system? A
little sample code would be much appreciated.

I would think the XmlDocumentFragment and XmlDocument (both in the
System.Xml namespace) would work well.
 
Back
Top