Class RssFeed
Represents an RSS Feed.
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 RssFeed : RssItem
Properties
| Improve this Doc View SourceArticles
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. |
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> |
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> |
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. |
Title
Gets or sets the feed title.
Declaration
[JsonProperty("title")]
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String | The title. |
Uid
Gets or sets the uid.
Declaration
[JsonProperty("uid")]
public Guid Uid { get; set; }
Property Value
Type | Description |
---|---|
System.Guid | The uid. |
Url
Gets or sets the feed URL.
Declaration
[JsonProperty("url")]
public Uri Url { get; set; }
Property Value
Type | Description |
---|---|
System.Uri | The feed URL. |