↧
Answer by Oppositional for SyndicationItem serialized with...
The XmlWriter is not being disposed of/flushed and so the output builder has not been written to.The following example works:static void Main(string[] args){ SyndicationFeed feed = null; using (var...
View ArticleSyndicationItem serialized with Atom10ItemFormatter returns empty output
private static string SerializeItem(SyndicationItem item){ StringBuilder builder = new StringBuilder(); Atom10ItemFormatter formatter = new Atom10ItemFormatter(item);...
View Article