isloated ストレージに保存する前に、RSS フィードをトリミングする必要があります。私のコードは
var rssData = from rss in XElement.Parse(e.Result).Descendants("item")
select new RSSClass
{
imageURL = rss.Element("description").Value,
imageRef = rss.Element("description").Value,
imageLink = rss.Element("link").Value,
imageTime = rss.Element("pubDate").Value
};
imageURLに代入する前に文字列を切り詰めたい。しかし、select new RSSClass {} body 内でそれを行うことはできませんでした。imageURL の前に、「無効な式の用語」というエラーが表示されます。実際には、隔離されたストレージに保存する前にRSSをトリミングする必要があります。よろしくお願いします。ありがとう