Method | Description | |
---|---|---|
AddAssemblyReference ( string id, string version ) : void |
Adds an add-in reference (there is a typo in the method name)
|
|
AddExtensionNode ( string path, string nodeName ) : Mono.Addins.Description.ExtensionNodeDescription |
Adds an extension node to the module. This method creates a new Extension object for the provided path if none exist. |
|
DependsOnAddin ( string addinId ) : bool |
Checks if this module depends on the specified add-in.
|
|
GetExtension ( string path ) : Mono.Addins.Description.Extension |
Gets an extension instance. This method creates a new Extension object for the provided path if none exist. |
|
ModuleDescription ( ) : System |
Initializes a new instance of the Mono.Addins.Description.ModuleDescription class.
|
Method | Description | |
---|---|---|
GetDependenciesElement ( ) : |
||
GetRuntimeElement ( ) : |
||
InitCollections ( ) : void | ||
ModuleDescription ( |
||
Read ( Mono.Addins.Serialization.BinaryXmlReader reader ) : void | ||
SaveXml ( |
||
Verify ( string location, |
||
Write ( Mono.Addins.Serialization.BinaryXmlWriter writer ) : void |
public AddAssemblyReference ( string id, string version ) : void | ||
id | string | /// Identifier of the add-in. /// |
version | string | /// Version of the add-in. /// |
return | void |
public AddExtensionNode ( string path, string nodeName ) : Mono.Addins.Description.ExtensionNodeDescription | ||
path | string | /// Path that identifies the extension point. /// |
nodeName | string | /// Node name. /// |
return | Mono.Addins.Description.ExtensionNodeDescription |
public DependsOnAddin ( string addinId ) : bool | ||
addinId | string | /// Identifier of the add-in /// |
return | bool |
public GetExtension ( string path ) : Mono.Addins.Description.Extension | ||
path | string | /// Path that identifies the extension point that the extension extends. /// |
return | Mono.Addins.Description.Extension |