Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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