Show / Hide Table of Contents

Class AddTorrentRequestBase

The base class for add torrent requests.

Inheritance
System.Object
AddTorrentRequestBase
AddTorrentFilesRequest
AddTorrentsRequest
AddTorrentUrlsRequest
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 abstract class AddTorrentRequestBase

Properties

| Improve this Doc View Source

AutomaticTorrentManagement

Enable/disable automatic torrent management for these torrents

Declaration
[ApiLevel(ApiLevel.V2, MinVersion = "2.2.0")]
public bool? AutomaticTorrentManagement { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
Remarks

This value is ignored until API v2.2.0

| Improve this Doc View Source

Category

Category for the torrent

Declaration
public string Category { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

ContentLayout

Torrent content layout.

Declaration
[ApiLevel(ApiLevel.V2, MinVersion = "2.7.0")]
public TorrentContentLayout? ContentLayout { get; set; }
Property Value
Type Description
System.Nullable<TorrentContentLayout>
Remarks

This value is ignored until API v2.7.0. Use CreateRootFolder for the previous versions.

See Also
CreateRootFolder
| Improve this Doc View Source

Cookie

Cookie sent to download the .torrent file

Declaration
public string Cookie { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

CreateRootFolder

Create the root folder.

Declaration
[ApiLevel(ApiLevel.V1)]
[Deprecated("2.7.0")]
public bool? CreateRootFolder { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
Remarks

This value is ignored starting from API v2.7.0. Use ContentLayout for the API v2.7.0 and newer.

See Also
ContentLayout
| Improve this Doc View Source

DownloadFolder

Download folder

Declaration
public string DownloadFolder { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

DownloadLimit

Set torrent download speed limit

Declaration
public int? DownloadLimit { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
| Improve this Doc View Source

FirstLastPiecePrioritized

Prioritize download of first and last pieces

Declaration
public bool FirstLastPiecePrioritized { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Paused

Add torrents in the paused state.

Declaration
public bool Paused { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

RatioLimit

Set torrent share ratio limit

Declaration
[ApiLevel(ApiLevel.V2, MinVersion = "2.8.1")]
public double? RatioLimit { get; set; }
Property Value
Type Description
System.Nullable<System.Double>
Remarks

This value is ignored until API v2.8.1

| Improve this Doc View Source

Rename

Rename torrent

Declaration
public string Rename { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

SeedingTimeLimit

Set torrent seeding time limit.

Declaration
[ApiLevel(ApiLevel.V2, MinVersion = "2.8.1")]
public TimeSpan? SeedingTimeLimit { get; set; }
Property Value
Type Description
System.Nullable<System.TimeSpan>
Remarks

This value is ignored until API v2.8.1

| Improve this Doc View Source

SequentialDownload

Enable sequential download

Declaration
public bool SequentialDownload { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

SkipHashChecking

Skip hash checking.

Declaration
public bool SkipHashChecking { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Tags

Tags for the torrent

Declaration
[ApiLevel(ApiLevel.V2, MinVersion = "2.6.2")]
public IEnumerable<string> Tags { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<System.String>
Remarks

This value is ignored until API v2.6.2

| Improve this Doc View Source

UploadLimit

Set torrent upload speed limit

Declaration
public int? UploadLimit { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2018 Pavel Fedarovich