Class RssFolder
Represents an RSS folder.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: QBittorrent.Client
Assembly: QBittorrent.Client.dll
Syntax
public class RssFolder : RssItem
Constructors
| Improve this Doc View SourceRssFolder()
Initializes a new instance of the RssFolder class.
Declaration
public RssFolder()
RssFolder(IEnumerable<RssItem>)
Initializes a new instance of the RssFolder class.
Declaration
public RssFolder(IEnumerable<RssItem> items)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<RssItem> | items | The folder items. |
RssFolder(String, IEnumerable<RssItem>)
Initializes a new instance of the RssFolder class.
Declaration
public RssFolder(string name, IEnumerable<RssItem> items)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The folder name. |
System.Collections.Generic.IEnumerable<RssItem> | items | The folder items. |
Properties
| Improve this Doc View SourceFeeds
Gets all feeds in the folder.
Declaration
public IEnumerable<RssFeed> Feeds { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<RssFeed> |
See Also
| Improve this Doc View SourceFolders
Gets all subfolders.
Declaration
public IEnumerable<RssFolder> Folders { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<RssFolder> |
See Also
| Improve this Doc View SourceItems
Gets all folder items (feeds and folders).
Declaration
public IList<RssItem> Items { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<RssItem> |