Show / Hide Table of Contents

Class SearchResult

Represents a search result.

Inheritance
System.Object
SearchResult
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 SearchResult

Properties

| Improve this Doc View Source

DescriptionUrl

URL of the torrent's description page.

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

FileName

Name of the file.

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

FileSize

Size of the file in bytes.

Declaration
[JsonProperty("fileSize")]
[JsonConverter(typeof(NegativeToNullConverter))]
public long? FileSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
| Improve this Doc View Source

FileUrl

Torrent download link (usually either .torrent file or magnet link).

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

Leechers

Number of leechers.

Declaration
[JsonProperty("nbLeechers")]
[JsonConverter(typeof(NegativeToNullConverter))]
public long? Leechers { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
| Improve this Doc View Source

Seeds

Number of seeders.

Declaration
[JsonProperty("nbSeeders")]
[JsonConverter(typeof(NegativeToNullConverter))]
public long? Seeds { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
| Improve this Doc View Source

SiteUrl

URL of the torrent site

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