हाय मैं फ़ीड आइटम से स्ट्रिंग में सामग्री को पढ़ने की कोशिश कर रहा हूं।सिंडिकेशन सामग्री से सामग्री पाठ पढ़ना
SyndicationFeed feed = SyndicationFeed.Load(feedReader);
SydicationContent itemContent = feed.Items.ToList<SyndicationItem>()[0].Content;
string retrivedContent = itemContent .......???
मैं आइटम सामग्री से टेक्स्ट कैसे पढ़ सकता हूं?
प्रलेखन से पता चलता TextSyndicationContent
TextSyndicationContent textContent = new TextSyndicationContent("Some text content");
SyndicationItem item = new SyndicationItem("Item Title", textContent, new Uri("server/items";), "ItemID", DateTime.Now);
बनाने का तरीका यह उल्टा करने के लिए किसी भी तरह से?
धन्यवाद
आपको दिए गए उत्तर के बजाय एंडीएच के उत्तर को स्वीकार करने पर विचार करना चाहिए। –