This is a serializable stub class that is used by the api to provide information about installed plugins.

PluginInfo

interface PluginInfo {
    CanUninstall?: boolean;
    ConfigurationFileName?: null | string;
    Description?: string;
    HasImage?: boolean;
    Id?: string;
    Name?: string;
    Status?: PluginStatus;
    Version?: string;
}

Properties

CanUninstall?: boolean

Gets or sets a value indicating whether the plugin can be uninstalled.

PluginInfo

ConfigurationFileName?: null | string

Gets or sets the name of the configuration file.

PluginInfo

Description?: string

Gets or sets the description.

PluginInfo

HasImage?: boolean

Gets or sets a value indicating whether this plugin has a valid image.

PluginInfo

Id?: string

Gets or sets the unique id.

PluginInfo

Name?: string

Gets or sets the name.

PluginInfo

Status?: PluginStatus

PluginInfo

Version?: string

Gets or sets the version.

PluginInfo