Question:
You are developing a Web application for an online retailer. The Web application contains order information. The order information must be exposed by using an RSS feed. You need to generate a private feed for the order information 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