Class RssArticle
Represents an RSS article.
Inheritance
System.Object
RssArticle
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 RssArticle
Properties
| Improve this Doc View SourceAdditionalData
Additional properties not handled by this library.
Declaration
[JsonExtensionData]
public IDictionary<string, JToken> AdditionalData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, Newtonsoft.Json.Linq.JToken> |
Author
The author.
Declaration
[JsonProperty("author")]
public string Author { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Date
The article date/time.
Declaration
[JsonProperty("date")]
public DateTimeOffset Date { get; set; }
Property Value
Type | Description |
---|---|
System.DateTimeOffset |
Description
The description.
Declaration
[JsonProperty("description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Id
The article id.
Declaration
[JsonProperty("id")]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsRead
The value indicating whether the article has been read.
Declaration
[JsonProperty("isRead")]
public bool IsRead { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Link
The torrent link.
Declaration
[JsonProperty("link")]
public Uri Link { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
Title
The title.
Declaration
[JsonProperty("title")]
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TorrentUri
The torrent URI.
Declaration
[JsonProperty("torrentURL")]
public Uri TorrentUri { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |