Property | Type | Description | |
---|---|---|---|
Addin | System | ||
LoadAddinInfo | void | ||
ResetCachedData | void | ||
SetIsUserAddin | void |
Method | Description | |
---|---|---|
CompareVersions ( string v1, string v2 ) : int |
Compares two add-in versions
|
|
GetFullId ( string ns, string id, string version ) : string |
Returns the identifier of an add-in
|
|
GetIdName ( string addinId ) : string |
Given a full add-in identifier, returns the namespace and name of the add-in (it removes the version number)
|
|
GetIdParts ( string addinId, string &name, string &version ) : void |
Splits a full add-in identifier in name and version
|
|
GetIdVersion ( string addinId ) : string |
Given a full add-in identifier, returns the version the add-in
|
|
SupportsVersion ( string version ) : bool |
Checks version compatibility. This method checks the CompatVersion property to know if the provided version is compatible with the version of this add-in. |
|
ToString ( ) : string |
Returns a System.String that represents the current Mono.Addins.Addin.
|
Method | Description | |
---|---|---|
Addin ( |
||
LoadAddinInfo ( ) : void | ||
ResetCachedData ( ) : void | ||
SetIsUserAddin ( |
public static CompareVersions ( string v1, string v2 ) : int | ||
v1 | string | /// A version /// |
v2 | string | /// A version /// |
return | int |
public static GetFullId ( string ns, string id, string version ) : string | ||
ns | string | /// Namespace of the add-in /// |
id | string | /// Name of the add-in /// |
version | string | /// Version of the add-in /// |
return | string |
public static GetIdName ( string addinId ) : string | ||
addinId | string | /// Add-in identifier. /// |
return | string |
public static GetIdParts ( string addinId, string &name, string &version ) : void | ||
addinId | string | /// Add-in identifier. /// |
name | string | /// The resulting name /// |
version | string | /// The resulting version /// |
return | void |
public static GetIdVersion ( string addinId ) : string | ||
addinId | string | |
return | string |
public SupportsVersion ( string version ) : bool | ||
version | string | /// An add-in version. /// |
return | bool |