Show / Hide Table of Contents

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 Source

All

Name that can be used to perform search using all plugins.

Declaration
public const string All = "all"
Field Value
Type Description
System.String
| Improve this Doc View Source

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 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

Categories

List of supported categories

Declaration
[JsonIgnore]
public IReadOnlyList<SearchPluginCategory> Categories { get; set; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<SearchPluginCategory>
| Improve this Doc View Source

FullName

Full name of the plugin

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

IsEnabled

Whether the plugin is enabled.

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

Name

Short name of the plugin

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

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>
| Improve this Doc View Source

Url

URL of the torrent site

Declaration
[JsonProperty("url")]
public Uri Url { get; set; }
Property Value
Type Description
System.Uri
| Improve this Doc View Source

Version

Installed version of the plugin

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