프로퍼티 | 타입 | 설명 | |
---|---|---|---|
AddinDependsOn | bool | ||
AddinRegistry | System | ||
CopyExtensionsFrom | void | ||
CreateHostAddinsFile | bool | ||
GetAddinForHostAssembly | |||
GetGlobalRegistry | |||
GetRegisteredStartupFolders | string[] | ||
NotifyDatabaseUpdated | void | ||
ParseAddin | void | ||
ScanFolders | void |
메소드 | 설명 | |
---|---|---|
AddinRegistry ( string registryPath ) : System |
Initializes a new instance. Creates a new add-in registry located in the provided path. The add-in registry will look for add-ins in an 'addins' subdirectory of the provided registryPath. When specifying a path, it is possible to use a special folder name as root. For example: [Personal]/.config/MyApp. In this case, [Personal] will be replaced by the location of the Environment.SpecialFolder.Personal folder. Any value of the Environment.SpecialFolder enumeration can be used (always between square brackets) |
|
AddinRegistry ( string registryPath, string startupDirectory ) : System |
Initializes a new instance. Creates a new add-in registry located in the provided path. The add-in registry will look for add-ins in an 'addins' subdirectory of the provided registryPath. When specifying a path, it is possible to use a special folder name as root. For example: [Personal]/.config/MyApp. In this case, [Personal] will be replaced by the location of the Environment.SpecialFolder.Personal folder. Any value of the Environment.SpecialFolder enumeration can be used (always between square brackets) |
|
AddinRegistry ( string registryPath, string startupDirectory, string addinsDir ) : System |
Initializes a new instance of the Mono.Addins.AddinRegistry class. Creates a new add-in registry located in the provided path. Configuration information about the add-in registry will be stored in 'registryPath'. The add-in registry will look for add-ins in the provided 'addinsDir' directory. When specifying a path, it is possible to use a special folder name as root. For example: [Personal]/.config/MyApp. In this case, [Personal] will be replaced by the location of the Environment.SpecialFolder.Personal folder. Any value of the Environment.SpecialFolder enumeration can be used (always between square brackets) |
|
AddinRegistry ( string registryPath, string startupDirectory, string addinsDir, string databaseDir ) : System |
Initializes a new instance of the Mono.Addins.AddinRegistry class. Creates a new add-in registry located in the provided path. Configuration information about the add-in registry will be stored in 'registryPath'. The add-in registry will look for add-ins in the provided 'addinsDir' directory. Cached information about add-ins will be stored in the 'databaseDir' directory. When specifying a path, it is possible to use a special folder name as root. For example: [Personal]/.config/MyApp. In this case, [Personal] will be replaced by the location of the Environment.SpecialFolder.Personal folder. Any value of the Environment.SpecialFolder enumeration can be used (always between square brackets) |
|
DisableAddin ( string id ) : void |
Disables an add-in. When an add-in is disabled, all extension points it defines will be ignored by the add-in engine. Other add-ins which depend on the disabled add-in will also automatically be disabled. |
|
DisableAddin ( string id, bool exactVersionMatch ) : void |
Disables an add-in. When an add-in is disabled, all extension points it defines will be ignored by the add-in engine. Other add-ins which depend on the disabled add-in will also automatically be disabled. |
|
Dispose ( ) : void |
Disposes the add-in engine.
|
|
DumpFile ( string file ) : void |
Internal use only
|
|
EnableAddin ( string id ) : void |
Enables an add-in. If the enabled add-in depends on other add-ins which are disabled, those will automatically be enabled too. |
|
GetAddin ( string id ) : |
Returns an add-in from the registry. The add-in identifier may optionally include a version number, for example: "TextEditor.Xml,1.2" |
|
GetAddin ( string id, bool exactVersionMatch ) : |
Returns an add-in from the registry. The add-in identifier may optionally include a version number, for example: "TextEditor.Xml,1.2". In this case, if the exact version is not found and exactVersionMatch is 'false', it will return one than is compatible with the required version. |
|
GetAddinDescription ( IProgressStatus progressStatus, string file ) : |
Loads an add-in description This method loads an add-in description from a file. The file can be an XML manifest or an assembly that implements an add-in. |
|
GetAddinRoots ( ) : Mono.Addins.Addin[] |
Gets all add-in roots registered in the registry.
|
|
GetAddins ( ) : Mono.Addins.Addin[] |
Gets all add-ins registered in the registry.
|
|
GetGlobalRegistry ( ) : |
Gets the global registry. The global add-in registry is created in "~/.config/mono.addins", and it is the default registry used when none is specified. |
|
GetModules ( AddinSearchFlags flags ) : Mono.Addins.Addin[] |
Gets all add-ins or add-in roots registered in the registry.
|
|
IsAddinEnabled ( string id ) : bool |
Checks whether an add-in is enabled.
|
|
IsRegisteredForUninstall ( string addinId ) : bool |
Determines whether an add-in is registered for uninstallation
|
|
ReadAddinManifestFile ( |
Reads an XML add-in manifest
|
|
ReadAddinManifestFile ( string file ) : |
Reads an XML add-in manifest
|
|
Rebuild ( IProgressStatus monitor ) : void |
Regenerates the cached data of the add-in registry.
|
|
RegisterExtension ( object extension ) : void |
Registers an extension. Only AddinFileSystemExtension extensions are supported right now.
|
|
RegisterForUninstall ( string id, IEnumerable |
Registers a set of add-ins for uninstallation. This method can be used to instruct the add-in manager to uninstall an add-in the next time the registry is updated. This is useful when an add-in manager can't delete an add-in because if it is loaded. |
|
ResetConfiguration ( ) : void |
Resets the configuration files of the registry
|
|
UnregisterExtension ( object extension ) : void |
Unregisters an extension.
|
|
Update ( ) : void |
Updates the add-in registry. This method must be called after modifying, installing or uninstalling add-ins. When calling Update, every add-in added to the registry is parsed and validated, and if there is any error it will be rejected. It will also cache add-in information needed at run-time. If during the update operation the registry finds new add-ins or detects that some add-ins have been deleted, the loaded extension points will be updated to include or exclude extension nodes from those add-ins. |
|
Update ( IProgressStatus monitor ) : void |
Updates the add-in registry. This method must be called after modifying, installing or uninstalling add-ins. When calling Update, every add-in added to the registry is parsed and validated, and if there is any error it will be rejected. It will also cache add-in information needed at run-time. If during the update operation the registry finds new add-ins or detects that some add-ins have been deleted, the loaded extension points will be updated to include or exclude extension nodes from those add-ins. |
메소드 | 설명 | |
---|---|---|
AddinDependsOn ( string id1, string id2 ) : bool | ||
AddinRegistry ( |
||
CopyExtensionsFrom ( |
||
CreateHostAddinsFile ( string hostFile ) : bool | ||
GetAddinForHostAssembly ( string filePath ) : |
||
GetGlobalRegistry ( |
||
GetRegisteredStartupFolders ( string registryPath ) : string[] | ||
NotifyDatabaseUpdated ( ) : void | ||
ParseAddin ( IProgressStatus progressStatus, string file, string outFile ) : void | ||
ScanFolders ( IProgressStatus monitor, string folderToScan, |
public AddinRegistry ( string registryPath ) : System | ||
registryPath | string | /// Location of the add-in registry. /// |
리턴 | System |
public AddinRegistry ( string registryPath, string startupDirectory ) : System | ||
registryPath | string | /// Location of the add-in registry. /// |
startupDirectory | string | /// Location of the application. /// |
리턴 | System |
public AddinRegistry ( string registryPath, string startupDirectory, string addinsDir ) : System | ||
registryPath | string | /// Location of the add-in registry. /// |
startupDirectory | string | /// Location of the application. /// |
addinsDir | string | /// Add-ins directory. If the path is relative, it is considered to be relative /// to the configDir directory. /// |
리턴 | System |
public AddinRegistry ( string registryPath, string startupDirectory, string addinsDir, string databaseDir ) : System | ||
registryPath | string | /// Location of the add-in registry. /// |
startupDirectory | string | /// Location of the application. /// |
addinsDir | string | /// Add-ins directory. If the path is relative, it is considered to be relative /// to the configDir directory. /// |
databaseDir | string | /// Location of the add-in database. If the path is relative, it is considered to be relative /// to the configDir directory. /// |
리턴 | System |
public DisableAddin ( string id ) : void | ||
id | string | /// Identifier of the add-in. /// |
리턴 | void |
public DisableAddin ( string id, bool exactVersionMatch ) : void | ||
id | string | /// Identifier of the add-in. /// |
exactVersionMatch | bool | /// If true, it disables the add-in that exactly matches the provided version. If false, it disables /// all versions of add-ins with the same Id /// |
리턴 | void |
public EnableAddin ( string id ) : void | ||
id | string | /// Identifier of the add-in /// |
리턴 | void |
public GetAddin ( string id ) : |
||
id | string | /// Identifier of the add-in. /// |
리턴 |
public GetAddin ( string id, bool exactVersionMatch ) : |
||
id | string | /// Identifier of the add-in. /// |
exactVersionMatch | bool | /// 'true' if the exact add-in version must be found. /// |
리턴 |
public GetAddinDescription ( IProgressStatus progressStatus, string file ) : |
||
progressStatus | IProgressStatus | /// Progress tracker. /// |
file | string | /// Name of the file to load /// |
리턴 |
public GetModules ( AddinSearchFlags flags ) : Mono.Addins.Addin[] | ||
flags | AddinSearchFlags | /// Flags. /// |
리턴 | Mono.Addins.Addin[] |
public IsAddinEnabled ( string id ) : bool | ||
id | string | /// Identifier of the add-in. /// |
리턴 | bool |
public IsRegisteredForUninstall ( string addinId ) : bool | ||
addinId | string | /// Identifier of the add-in /// |
리턴 | bool |
public ReadAddinManifestFile ( |
||
reader | /// Reader that contains the XML /// | |
baseFile | string | /// Base path to use to discover add-in files /// |
리턴 |
public ReadAddinManifestFile ( string file ) : |
||
file | string | /// Path to the XML file /// |
리턴 |
public Rebuild ( IProgressStatus monitor ) : void | ||
monitor | IProgressStatus | /// Progress monitor to keep track of the rebuild operation. /// |
리턴 | void |
public RegisterExtension ( object extension ) : void | ||
extension | object | /// The extension to register /// |
리턴 | void |
public RegisterForUninstall ( string id, IEnumerable |
||
id | string | /// Identifier of the add-in /// |
files | IEnumerable |
/// Files to be uninstalled /// |
리턴 | void |
public UnregisterExtension ( object extension ) : void | ||
extension | object | /// The extension to unregister /// |
리턴 | void |
public Update ( IProgressStatus monitor ) : void | ||
monitor | IProgressStatus | /// Progress monitor to keep track of the update operation. /// |
리턴 | void |