Class GlobalTransferInfo
Represents global transfer info.
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 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> |
ConnectionStatus
Connection status
Declaration
[JsonProperty("connection_status")]
public ConnectionStatus? ConnectionStatus { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<ConnectionStatus> |
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> |
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> |
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> |
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> |
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> |
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> |
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> |