Show / Hide Table of Contents

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 Source

AdditionalData

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>
| Improve this Doc View Source

Author

The author.

Declaration
[JsonProperty("author")]
public string Author { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Date

The article date/time.

Declaration
[JsonProperty("date")]
public DateTimeOffset Date { get; set; }
Property Value
Type Description
System.DateTimeOffset
| Improve this Doc View Source

Description

The description.

Declaration
[JsonProperty("description")]
public string Description { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Id

The article id.

Declaration
[JsonProperty("id")]
public string Id { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

IsRead

The value indicating whether the article has been read.

Declaration
[JsonProperty("isRead")]
public bool IsRead { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Link

The torrent link.

Declaration
[JsonProperty("link")]
public Uri Link { get; set; }
Property Value
Type Description
System.Uri
| Improve this Doc View Source

Title

The title.

Declaration
[JsonProperty("title")]
public string Title { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

TorrentUri

The torrent URI.

Declaration
[JsonProperty("torrentURL")]
public Uri TorrentUri { get; set; }
Property Value
Type Description
System.Uri
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2018 Pavel Fedarovich