Show / Hide Table of Contents

Class RssFolder

Represents an RSS folder.

Inheritance
System.Object
RssItem
RssFolder
Inherited Members
RssItem.Name
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 Source

RssFolder()

Initializes a new instance of the RssFolder class.

Declaration
public RssFolder()
| Improve this Doc View Source

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.

| Improve this Doc View Source

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 Source

Feeds

Gets all feeds in the folder.

Declaration
public IEnumerable<RssFeed> Feeds { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<RssFeed>
See Also
Items
Folders
| Improve this Doc View Source

Folders

Gets all subfolders.

Declaration
public IEnumerable<RssFolder> Folders { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<RssFolder>
See Also
Items
Feeds
| Improve this Doc View Source

Items

Gets all folder items (feeds and folders).

Declaration
public IList<RssItem> Items { get; }
Property Value
Type Description
System.Collections.Generic.IList<RssItem>
See Also
Feeds
Folders

See Also

RssItem
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2018 Pavel Fedarovich