Mono.Addins.Addin.SupportsVersion C# (CSharp) Method

SupportsVersion() public method

Checks version compatibility.
This method checks the CompatVersion property to know if the provided version is compatible with the version of this add-in.
public SupportsVersion ( string version ) : bool
version string /// An add-in version. ///
return bool
        public bool SupportsVersion(string version)
        {
            return AddinInfo.SupportsVersion (version);
        }