Show / Hide Table of Contents

Class SearchResults

Represents current search results of a search job.

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

Properties

| Improve this Doc View Source

Results

Search results.

Declaration
[JsonProperty("results")]
public IReadOnlyList<SearchResult> Results { get; set; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<SearchResult>
| Improve this Doc View Source

Status

Current status of the search job.

Declaration
[JsonProperty("status")]
[JsonConverter(typeof(StringEnumConverter))]
public SearchJobStatus Status { get; set; }
Property Value
Type Description
SearchJobStatus
| Improve this Doc View Source

Total

Total number of results. If the status is Running this number may continue to increase.

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