Support UpdatedDate attribute #3347
Conversation
|
Thanks weskroesbergen for opening a Pull Request! The reviewers will test the PR and highlight if there is any conflict or changes required. If the PR is approved we will proceed to merge the pull request |
|
@weskroesbergen shouldn't you also update the parsers ? It all seems to be a manual XML parsing. |
|
@weskroesbergen did you have some time to look into this? Thanks in advance! |
|
Build failing due to whitespace:
I think if we go through with #3200 then all that's left in @weskroesbergen could you provide more details on how you're using the RssParser in the toolkit and for what? Have you tried to use the .NET APIs above? Is there something wrong with them or is this API surface simpler? Any info you could provide would be really helpful. Thanks! |
|
Yup, investigated that the XmlReader reader = XmlReader.Create(RssFeedLocation);
SyndicationFeed feed = SyndicationFeed.Load(reader);
reader.Close();
foreach (SyndicationItem element in feed.Items)
{
Console.WriteLine($"Title: {element.Title.Text}");
Console.WriteLine($"Summary: {element.Summary.Text}");
}https://stackoverflow.com/a/14222155/8798708 I'm going to close this issue. @azchohfi can you remove the RSS Parser as part of #3435? I created Doc Issue to track migration guide. |
|
Done. |
|
@michael-hawker was using RSS parser to generate a feed, but don't depend on it anymore. |
No description provided.