Please some one help me
My code is:
XDocument document = new XDocument(
new XDeclaration("1.0", "utf-8", "yes"),
new XElement("rss", new XAttribute(XNamespace.Xmlns + "media", "http://m.xyz.com/rss/"), new XAttribute("version", "2.0"),
new XElement("channel",
new XAttribute("vendor", "ABC"),
new XAttribute("lastpublishdate", DateTime.Now.ToString("dd/MM/yyyy hh:mm"))),
new XElement("title", "Videos"),
new XElement("media:thumbnail", new XAttribute("width", x.width.ToString().Trim()), new XAttribute("height", x.height.ToString().Trim())),
)
);
My Expected O/P-

VulpesPosted Dec 5, 2013, 9:11 AM
XNamespace media = "http://m.xyz.com/rss/";
Then change "media:thumbnail" to:
media + "thumbnail"