Feeds Property
Retrieves the collection of feeds in this folder.
Syntax
[ coll = ] FeedFolder.Feeds
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:
foreach (IFeed feed in (IFeedsEnum)currentFolder.Feeds) { yield return feed; }
Applies To
FeedFolder
See Also