RssClient.ListFeedItemsAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
List all RSS feed items
public virtual System.Threading.Tasks.Task<System.Collections.Generic.List<Azure.Connectors.Sdk.Rss.Models.FeedItem>> ListFeedItemsAsync(string theRSSFeedURL, string since = default, string chosenPropertyWillBeUsedToDetermineWhichItemsAreNew = default, System.Threading.CancellationToken cancellationToken = default);
abstract member ListFeedItemsAsync : string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.List<Azure.Connectors.Sdk.Rss.Models.FeedItem>>
override this.ListFeedItemsAsync : string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.List<Azure.Connectors.Sdk.Rss.Models.FeedItem>>
Public Overridable Function ListFeedItemsAsync (theRSSFeedURL As String, Optional since As String = Nothing, Optional chosenPropertyWillBeUsedToDetermineWhichItemsAreNew As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of List(Of FeedItem))
Parameters
- theRSSFeedURL
- String
The RSS feed URL
- since
- String
since
- chosenPropertyWillBeUsedToDetermineWhichItemsAreNew
- String
Chosen property will be used to determine which items are new.
- cancellationToken
- CancellationToken
Cancellation token.
Returns
The List all RSS feed items response.
Remarks
This operation retrieves all items from an RSS feed.