ARCed.Plugins.RegistryEntry.RegistryEntry C# (CSharp) Method

RegistryEntry() public method

Constructs a new RegistryEntry object
public RegistryEntry ( Plugin plugin, Type type, string name, string className ) : System
plugin Plugin The plugin the entry is from
type System.Type The invokable type found in the plugin
name string The simple name of the entry
className string The full class name, including namespaces of the type
return System
        public RegistryEntry(Plugin plugin, Type type, string name, string className)
        {
            this.Plugin = plugin;
            this.Host = plugin.Host;
            this.ClassType = type;
            this.Name = name;
            this.ClassName = className;
            this.Description = "";
        }