RSS.NET

RssItemCollection.Item Property

Gets or sets the item at a specified index.

In C#, this property is the indexer for the class.

[Visual Basic]
Public Default Property Item( _
   ByVal index As Integer _
) As RssItem
[C#]
public RssItem this[
   int index
] {get; set;}

Parameters

index
The index of the collection to access.

Property Value

An item at each valid index.

Remarks

This method is an indexer that can be used to access the collection.

Exceptions

Exception TypeCondition
ArgumentOutOfRangeExceptionindex is not a valid index.

See Also

RssItemCollection Class | Rss Namespace