C# Class PluginManager.AvailablePlugins

Collection for AvailablePlugin Type
Inheritance: System.Collections.CollectionBase, Interfaces.IAvailablePlugins
Mostrar archivo Open project: mhack/gamenoise

Public Methods

Method Description
Add ( Interfaces pluginToAdd ) : void

Add a Plugin to the collection of Available plugins

Find ( string pluginNameOrPath ) : Interfaces.IAvailablePlugin

Finds a plugin in the available Plugins

Remove ( Interfaces pluginToRemove ) : void

Remove a Plugin to the collection of Available plugins

Method Details

Add() public method

Add a Plugin to the collection of Available plugins
public Add ( Interfaces pluginToAdd ) : void
pluginToAdd Interfaces The Plugin to Add
return void

Find() public method

Finds a plugin in the available Plugins
public Find ( string pluginNameOrPath ) : Interfaces.IAvailablePlugin
pluginNameOrPath string The name or File path of the plugin to find
return Interfaces.IAvailablePlugin

Remove() public method

Remove a Plugin to the collection of Available plugins
public Remove ( Interfaces pluginToRemove ) : void
pluginToRemove Interfaces The Plugin to Remove
return void