Show / Hide Table of Contents

Class PartialData

Represents full or partial data returned by GetPartialDataAsync(Int32, CancellationToken) method.

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

Properties

| Improve this Doc View Source

AdditionalData

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>
| Improve this Doc View Source

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
CategoriesChanged
| Improve this Doc View Source

CategoriesChanged

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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.

| Improve this Doc View Source

Queueing

Priority system usage flag

Declaration
[JsonProperty("queueing")]
public bool Queueing { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

ResponseId

Gets or sets the response identifier.

Declaration
[JsonProperty("rid")]
public int ResponseId { get; set; }
Property Value
Type Description
System.Int32

The response identifier.

| Improve this Doc View Source

ServerState

Gets or sets the state of the server.

Declaration
[JsonProperty("server_state")]
public GlobalTransferExtendedInfo ServerState { get; set; }
Property Value
Type Description
GlobalTransferExtendedInfo
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2018 Pavel Fedarovich