Show / Hide Table of Contents

Class GlobalTransferInfo

Represents global transfer info.

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

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

ConnectionStatus

Connection status

Declaration
[JsonProperty("connection_status")]
public ConnectionStatus? ConnectionStatus { get; set; }
Property Value
Type Description
System.Nullable<ConnectionStatus>
| Improve this Doc View Source

DhtNodes

DHT nodes connected to

Declaration
[JsonProperty("dht_nodes")]
[JsonConverter(typeof(NegativeToNullConverter))]
public long? DhtNodes { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
| Improve this Doc View Source

DownloadedData

Data downloaded this session (bytes)

Declaration
[JsonProperty("dl_info_data")]
[JsonConverter(typeof(NegativeToNullConverter))]
public long? DownloadedData { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
| Improve this Doc View Source

DownloadSpeed

Global download rate (bytes/s)

Declaration
[JsonProperty("dl_info_speed")]
[JsonConverter(typeof(NegativeToNullConverter))]
public long? DownloadSpeed { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
| Improve this Doc View Source

DownloadSpeedLimit

Download rate limit (bytes/s)

Declaration
[JsonProperty("dl_rate_limit")]
[JsonConverter(typeof(NegativeToNullConverter))]
public long? DownloadSpeedLimit { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
| Improve this Doc View Source

UploadedData

Data uploaded this session (bytes)

Declaration
[JsonProperty("up_info_data")]
[JsonConverter(typeof(NegativeToNullConverter))]
public long? UploadedData { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
| Improve this Doc View Source

UploadSpeed

Global upload rate (bytes/s)

Declaration
[JsonProperty("up_info_speed")]
[JsonConverter(typeof(NegativeToNullConverter))]
public long? UploadSpeed { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
| Improve this Doc View Source

UploadSpeedLimit

Upload rate limit (bytes/s)

Declaration
[JsonProperty("up_rate_limit")]
[JsonConverter(typeof(NegativeToNullConverter))]
public long? UploadSpeedLimit { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2018 Pavel Fedarovich