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 SourceAdditionalData
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> |
AddPaused
Add matched torrent in paused mode.
Declaration
[JsonProperty("addPaused")]
public bool? AddPaused { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
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> |
AssignedCategory
Category to assign to the torrent.
Declaration
[JsonProperty("assignedCategory")]
public string AssignedCategory { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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 |
EpisodeFilter
Episode filter definition.
Declaration
[JsonProperty("episodeFilter")]
public string EpisodeFilter { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IgnoreDays
Ignore subsequent rule matches.
Declaration
[JsonProperty("ignoreDays")]
public int IgnoreDays { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
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> |
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
| Improve this Doc View SourceMustNotContain
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
| Improve this Doc View SourcePreviouslyMatchedEpisodes
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> |
SavePath
The directory to save the torrent to.
Declaration
[JsonProperty("savePath")]
public string SavePath { get; set; }
Property Value
Type | Description |
---|---|
System.String |
SmartFilter
Enable smart episode filter.
Declaration
[JsonProperty("smartFilter")]
public bool SmartFilter { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
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 |