Question:
You are developing a Web application. The Web application contains a news section. The news must be exposed by using RSS feeds and Atom feeds. You need to generate the feeds for the news section by using the least amount of code. What should you do? (More than one answer choice may achieve the goal. Select the BEST answer.)
A
Create a StringBuilder object and write the object to the output stream by using a TextWriter instance.
B
Create a StringBuilder object and write the object to the output stream by using an XmlWriter instance.
C
Create a SyndicationFeed object, format the object by using a formatter object, and write the object to the output stream by using a TextWriter instance.
D
Create a SyndicationFeed object, format the object by using a formatter object, and write the object to the output stream by using an XmlWriter instance.
+ AnswerD
+ Report