Show / Hide Table of Contents

Class RssAutoDownloadingRule

Represents an RSS auto-downloading rule.

Inheritance
System.Object
RssAutoDownloadingRule
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 RssAutoDownloadingRule

Properties

| Improve this Doc View Source

AdditionalData

Additional properties not handled by this library.

Declaration
[JsonExtensionData]
public IDictionary<string, JToken> AdditionalData { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, Newtonsoft.Json.Linq.JToken>
| Improve this Doc View Source

AddPaused

Add matched torrent in paused mode.

Declaration
[JsonProperty("addPaused")]
public bool? AddPaused { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
| Improve this Doc View Source

AffectedFeeds

The feed URLs the rule applied to.

Declaration
[JsonProperty("affectedFeeds")]
public IReadOnlyList<Uri> AffectedFeeds { get; set; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<System.Uri>
| Improve this Doc View Source

AssignedCategory

Category to assign to the torrent.

Declaration
[JsonProperty("assignedCategory")]
public string AssignedCategory { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Enabled

Gets or sets the value indicating whether the rule is enabled.

Declaration
[JsonProperty("enabled")]
public bool Enabled { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

EpisodeFilter

Episode filter definition.

Declaration
[JsonProperty("episodeFilter")]
public string EpisodeFilter { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

IgnoreDays

Ignore subsequent rule matches.

Declaration
[JsonProperty("ignoreDays")]
public int IgnoreDays { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

LastMatch

The rule last match time.

Declaration
[JsonProperty("lastMatch")]
[JsonConverter(typeof(Rfc2822ToDateTimeOffsetConverter))]
public DateTimeOffset? LastMatch { get; set; }
Property Value
Type Description
System.Nullable<System.DateTimeOffset>
| Improve this Doc View Source

MustContain

The substring that the torrent name must contain.

Declaration
[JsonProperty("mustContain")]
public string MustContain { get; set; }
Property Value
Type Description
System.String
See Also
MustNotContain
UseRegex
| Improve this Doc View Source

MustNotContain

The substring that the torrent name must not contain.

Declaration
[JsonProperty("mustNotContain")]
public string MustNotContain { get; set; }
Property Value
Type Description
System.String
See Also
MustContain
UseRegex
| Improve this Doc View Source

PreviouslyMatchedEpisodes

The list of episode IDs already matched by smart filter.

Declaration
[JsonProperty("previouslyMatchedEpisodes")]
public IReadOnlyList<string> PreviouslyMatchedEpisodes { get; set; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<System.String>
| Improve this Doc View Source

SavePath

The directory to save the torrent to.

Declaration
[JsonProperty("savePath")]
public string SavePath { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

SmartFilter

Enable smart episode filter.

Declaration
[JsonProperty("smartFilter")]
public bool SmartFilter { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

UseRegex

Set to true in order to use regular expressions in for MustContain and MustNotContain properties.

Declaration
[JsonProperty("useRegex")]
public bool UseRegex { get; set; }
Property Value
Type Description
System.Boolean
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2018 Pavel Fedarovich