Class CorePluginInfoConfig
Configuration for a ICorePluginInfo
Inheritance
System.Object
CorePluginInfoConfig
Implements
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: ImageVault.Core.Common
Assembly: ImageVault.Core.dll
Syntax
public class CorePluginInfoConfig : ICorePluginInfo
Constructors
CorePluginInfoConfig()
Default constructor
Declaration
public CorePluginInfoConfig()
CorePluginInfoConfig(Int32, String, Nullable<Int32>, String)
Creates a config
Declaration
public CorePluginInfoConfig(int id, string typeName, int? priority, string config)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | id | |
System.String | typeName | |
System.Nullable<System.Int32> | priority | |
System.String | config |
Properties
Config
Configuration for the plugin
Declaration
public string Config { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Id
Id of the configured plugin
Declaration
public int Id { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Priority
Gets the priority of the plugin
Declaration
public int? Priority { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
TypeName
Get/Sets the TypeName of the CorePluginInfo
Declaration
public string TypeName { get; set; }
Property Value
Type | Description |
---|---|
System.String |