Represents a request to get the active downloads.
TellActive(string[]? keys = null, string? id = null)Returns a list of active downloads. Each download’s status is represented as an Aria2Status object.
https://aria2.github.io/manual/en/html/aria2c.html#aria2.tellActive
keys (string[] (optional, default: null)): Optional keys to filter the status objects.
id (string (optional, default: null)): The tracking id for the request. If this is omitted it will be generated automatically.Returns:
A read-only list of active downloads.
Throws:
Aria2Exception
Thrown when an aria2 error occurs.
TellActive(Expression<Func<Aria2Status, object?>> keysSelector, string? id = null)Returns a list of active downloads. Each download’s status is represented as an Aria2Status object.
https://aria2.github.io/manual/en/html/aria2c.html#aria2.tellActive
keysSelector (System.Linq.Expressions.Expression<System.Func<Aria2.JsonRpcClient.Models.Aria2Status, object?>>): Optional keys to filter the status objects.
id (string (optional, default: null)): The tracking id for the request. If this is omitted it will be generated automatically.Returns:
A read-only list of active downloads.
Throws:
Aria2Exception
Thrown when an aria2 error occurs.