Enum RemoveMode
Namespace: MonoTorrent.Client
Assembly: MonoTorrent.dll
Syntax
public enum RemoveMode
Fields
| Name | Description |
|---|---|
| CacheDataAndDownloadedData | Removes all cache data from the CacheDirectory when removing the TorrentManager from the ClientEngine. Any data downloaded by the TorrentManager will be deleted. |
| CacheDataOnly | Removes all cache data, such as fast resume data and the copy of the .torrent metadata, from the CacheDirectory when removing the TorrentManager from the ClientEngine. Any data downloaded by the TorrentManager will not be deleted. |
| DownloadedDataOnly | Any data downloaded by the TorrentManager will be deleted. Does not remove any cache data, such as fast resume data and the copy of the .torrent metadata, from the CacheDirectory when removing the TorrentManager from the ClientEngine. |
| KeepAllData | Does not remove any cache data, such as fast resume data and the copy of the .torrent metadata, from the CacheDirectory when removing the TorrentManager from the ClientEngine. Any data downloaded by the TorrentManager will not be deleted. |