Items Property
Retrieves a collection of items from the feed.
Syntax
[ coll = ] Feed.Items
Possible Values
coll Object that receives the collection. The property is read-only. The property has no default value.
Remarks
The object returned from this property can be cast to IFeedsEnum, as in the follow C# example:
System.Diagnostics.Debug.Print("Found feed {0} with {1} items.", feed.Name, ((IFeedsEnum)feed.Items).Count);
Applies To
Feed
See Also