Class PartialData
Represents full or partial data returned by GetPartialDataAsync(Int32, CancellationToken) method.
Inheritance
Inherited Members
Namespace: QBittorrent.Client
Assembly: QBittorrent.Client.dll
Syntax
public class PartialData
Properties
| Improve this Doc View SourceAdditionalData
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> |
CategoriesAdded
Gets or sets the list of added categories.
Declaration
[Obsolete("Use CategoriesChanged property instead.")]
[JsonIgnore]
public IReadOnlyList<string> CategoriesAdded { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.String> |
Remarks
Starting from API v2.1.0 this property will always be null. You should use CategoriesChanged property instead.
See Also
| Improve this Doc View SourceCategoriesChanged
Gets or sets the changed categories with their save paths.
Declaration
[JsonIgnore]
public IReadOnlyDictionary<string, Category> CategoriesChanged { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyDictionary<System.String, Category> |
CategoriesRemoved
Gets or sets the list of removed categories.
Declaration
[JsonProperty("categories_removed")]
public IReadOnlyList<string> CategoriesRemoved { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.String> |
FullUpdate
Gets or sets a value indicating whether this object contains all data.
Declaration
[JsonProperty("full_update")]
public bool FullUpdate { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if this object contains all data; false if this object contains only changes of data since the previous request. |
Queueing
Priority system usage flag
Declaration
[JsonProperty("queueing")]
public bool Queueing { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ResponseId
Gets or sets the response identifier.
Declaration
[JsonProperty("rid")]
public int ResponseId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The response identifier. |
ServerState
Gets or sets the state of the server.
Declaration
[JsonProperty("server_state")]
public GlobalTransferExtendedInfo ServerState { get; set; }
Property Value
Type | Description |
---|---|
GlobalTransferExtendedInfo |
TagsAdded
Get or sets the list of added tags.
Declaration
[JsonProperty("tags")]
public IReadOnlyList<string> TagsAdded { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.String> |
TagsRemoved
Get or sets the list of removed tags.
Declaration
[JsonProperty("tags_removed")]
public IReadOnlyList<string> TagsRemoved { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.String> |
TorrentsChanged
Gets or sets the list of changed or added torrents.
Declaration
[JsonProperty("torrents")]
public IReadOnlyDictionary<string, TorrentPartialInfo> TorrentsChanged { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyDictionary<System.String, TorrentPartialInfo> |
TorrentsRemoved
Gets or sets the list of removed torrents.
Declaration
[JsonProperty("torrents_removed")]
public IReadOnlyList<string> TorrentsRemoved { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.String> |