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 SourceDescriptionUrl
URL of the torrent's description page.
Declaration
[JsonProperty("descrLink")]
public Uri DescriptionUrl { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
FileName
Name of the file.
Declaration
[JsonProperty("fileName")]
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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> |
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 |
Leechers
Number of leechers.
Declaration
[JsonProperty("nbLeechers")]
[JsonConverter(typeof(NegativeToNullConverter))]
public long? Leechers { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
Seeds
Number of seeders.
Declaration
[JsonProperty("nbSeeders")]
[JsonConverter(typeof(NegativeToNullConverter))]
public long? Seeds { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
SiteUrl
URL of the torrent site
Declaration
[JsonProperty("siteUrl")]
public Uri SiteUrl { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |