Class PluginVersionInfo
Contains information about a Phoenix plugin.
Inheritance
System.Object
PluginVersionInfo
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: Phoenix.Plugins
Assembly: Phoenix.Abstractions.Plugins.dll
Syntax
public class PluginVersionInfo
Constructors
View SourcePluginVersionInfo(String, String, String, String, String)
Declaration
public PluginVersionInfo(string name, string displayName, string version, string description, string contact = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
System.String | displayName | |
System.String | version | |
System.String | description | |
System.String | contact |
Properties
View SourceContact
Gets the contact for a plugin.
Declaration
public string Contact { get; }
Property Value
Type | Description |
---|---|
System.String |
Description
Gets the description for a plugin.
Declaration
public string Description { get; }
Property Value
Type | Description |
---|---|
System.String |
DisplayName
Gets the display name of the plugin.
Declaration
public string DisplayName { get; }
Property Value
Type | Description |
---|---|
System.String |
Name
Gets the name of the plugin.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Version
Gets the version string for a plugin.
Declaration
public string Version { get; }
Property Value
Type | Description |
---|---|
System.String |