1
vote
1answer
303 views
How to emit bare XML for a [WebGet] method in WCF?
How can I define a [OperationContract] [WebGet] method to return XML that is stored in a string, without HTML encoding the string?
The application is using WCF service to return XML/XHTML …
0
votes
.NET XML Serialization without <?xml> root node
Derive your own XmlTextWriter to omit the XML declaration.
Private Class MyXmlTextWriter
Inherits XmlTextWriter
Sub New(ByVal sb As StringBuilder)
MyBase.New(New StringWriter(sb)) …
