ScrewTurn.Wiki.PluginFramework.ComponentInformation.ComponentInformation C# (CSharp) Method

ComponentInformation() public method

Initializes a new instance of the ComponentInformation class.
public ComponentInformation ( string name, string author, string version, string url, string updateUrl ) : System
name string The Name of the Component.
author string The Author of the Component.
version string The component version.
url string The info URL of the Component/Author.
updateUrl string The update URL of the component, or null.
return System
        public ComponentInformation(string name, string author, string version, string url, string updateUrl)
        {
            this.name = name;
            this.author = author;
            this.version = version;
            this.url = url;
            this.updateUrl = updateUrl;
        }
ComponentInformation