Class GlobalTransferExtendedInfo
Represents global transfer info with additional information and statistics.
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 GlobalTransferExtendedInfo : GlobalTransferInfo
Properties
| Improve this Doc View SourceAllTimeDownloaded
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> |
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> |
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.
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 |
GlobalRatio
Global ratio
Declaration
[JsonIgnore]
public double? GlobalRatio { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
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> |
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> |
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> |
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> |