Class SearchPlugin
Represents information about a search plugin.
Inheritance
System.Object
SearchPlugin
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 SearchPlugin
Fields
| Improve this Doc View SourceAll
Name that can be used to perform search using all plugins.
Declaration
public const string All = "all"
Field Value
Type | Description |
---|---|
System.String |
Enabled
Name that can be used to perform search using all enabled plugins.
Declaration
public const string Enabled = "enabled"
Field Value
Type | Description |
---|---|
System.String |
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> |
Categories
List of supported categories
Declaration
[JsonIgnore]
public IReadOnlyList<SearchPluginCategory> Categories { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<SearchPluginCategory> |
FullName
Full name of the plugin
Declaration
[JsonProperty("fullName")]
public string FullName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsEnabled
Whether the plugin is enabled.
Declaration
[JsonProperty("enabled")]
public bool IsEnabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Short name of the plugin
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
SupportedCategories
List of supported categories
Declaration
[Obsolete("Use Categories property instead.")]
[JsonIgnore]
public IReadOnlyList<string> SupportedCategories { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.String> |
Url
URL of the torrent site
Declaration
[JsonProperty("url")]
public Uri Url { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
Version
Installed version of the plugin
Declaration
[JsonProperty("version")]
public Version Version { get; set; }
Property Value
Type | Description |
---|---|
System.Version |