Represents a request to get the list of stopped downloads.
TellStopped(int offset, int num, string[]? keys = null, string? id = null)Returns a list of stopped downloads.offset specifies the starting index (can be negative) and num specifies the maximum number to return.
https://aria2.github.io/manual/en/html/aria2c.html#aria2.tellStopped
offset (int): The starting index in the stopped queue.
num (int): The maximum number of downloads to return.
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 stopped downloads.
Throws:
Aria2Exception
Thrown when an aria2 error occurs.
TellStopped(int offset, int num, Expression<Func<Aria2Status, object?>> keysSelector, string? id = null)Returns a list of stopped downloads.offset specifies the starting index (can be negative) and num specifies the maximum number to return.
https://aria2.github.io/manual/en/html/aria2c.html#aria2.tellStopped
offset (int): The starting index in the stopped queue.
num (int): The maximum number of downloads to return.
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 stopped downloads.
Throws:
Aria2Exception
Thrown when an aria2 error occurs.