Show / Hide Table of Contents

Class RssFeed

Represents an RSS Feed.

Inheritance
System.Object
RssItem
RssFeed
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 RssFeed : RssItem

Properties

| Improve this Doc View Source

Articles

Gets or sets the articles.

Declaration
[JsonProperty("articles")]
public IList<RssArticle> Articles { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<RssArticle>

The articles.

| Improve this Doc View Source

HasError

Gets or sets the value indicating whether the feed has an error.

Declaration
[JsonProperty("hasError")]
public bool? HasError { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
| Improve this Doc View Source

IsLoading

Gets or sets the value indicating whether the feed is loading.

Declaration
[JsonProperty("isLoading")]
public bool? IsLoading { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
| Improve this Doc View Source

LastBuildDate

Gets or sets the last build date.

Declaration
[JsonProperty("lastBuildDate")]
public DateTimeOffset? LastBuildDate { get; set; }
Property Value
Type Description
System.Nullable<System.DateTimeOffset>

The last build date.

| Improve this Doc View Source

Title

Gets or sets the feed title.

Declaration
[JsonProperty("title")]
public string Title { get; set; }
Property Value
Type Description
System.String

The title.

| Improve this Doc View Source

Uid

Gets or sets the uid.

Declaration
[JsonProperty("uid")]
public Guid Uid { get; set; }
Property Value
Type Description
System.Guid

The uid.

| Improve this Doc View Source

Url

Gets or sets the feed URL.

Declaration
[JsonProperty("url")]
public Uri Url { get; set; }
Property Value
Type Description
System.Uri

The feed URL.

See Also

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