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 SourceResults
Search results.
Declaration
[JsonProperty("results")]
public IReadOnlyList<SearchResult> Results { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<SearchResult> |
Status
Current status of the search job.
Declaration
[JsonProperty("status")]
[JsonConverter(typeof(StringEnumConverter))]
public SearchJobStatus Status { get; set; }
Property Value
Type | Description |
---|---|
SearchJobStatus |
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 |