Show / Hide Table of Contents

Class GlobalTransferExtendedInfo

Represents global transfer info with additional information and statistics.

Inheritance
System.Object
GlobalTransferInfo
GlobalTransferExtendedInfo
Inherited Members
GlobalTransferInfo.DownloadSpeed
GlobalTransferInfo.DownloadedData
GlobalTransferInfo.DownloadSpeedLimit
GlobalTransferInfo.UploadSpeed
GlobalTransferInfo.UploadedData
GlobalTransferInfo.UploadSpeedLimit
GlobalTransferInfo.DhtNodes
GlobalTransferInfo.ConnectionStatus
GlobalTransferInfo.AdditionalData
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 GlobalTransferExtendedInfo : GlobalTransferInfo

Properties

| Improve this Doc View Source

AllTimeDownloaded

The amount of data downloaded for all time (bytes)

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

AllTimeUploaded

The amount of data uploaded for all time (bytes)

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

FreeSpaceOnDisk

Free space on disk.

Declaration
[JsonProperty("free_space_on_disk")]
[ApiLevel(ApiLevel.V2, MinVersion = "2.1.1")]
public long? FreeSpaceOnDisk { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
Remarks

This value is available starting from API v2.1.1.

| Improve this Doc View Source

GlobalAltSpeedLimitsEnabled

Indicates whether the global alternative speed limits are enabled

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

GlobalRatio

Global ratio

Declaration
[JsonIgnore]
public double? GlobalRatio { get; }
Property Value
Type Description
System.Nullable<System.Double>
| Improve this Doc View Source

RefreshInterval

The preferred refresh interval (milliseconds)

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

TotalBuffersSize

Total used buffers size

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

TotalPeerConnections

Total number of peer connections

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

TotalWasted

The ammount of data wasted (bytes)

Declaration
[JsonProperty("total_wasted_session")]
[JsonConverter(typeof(NegativeToNullConverter))]
public long? TotalWasted { 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