| ZennoLab.CommandCenter Assembly > ZennoLab.CommandCenter Namespace > Instance Class : GetPlugins Method |
public IEnumerable<PluginItem> GetPlugins()
Type: System.Collections.IEnumerable
Collection of plugins.
// get plugins var plugins = instance.GetPlugins(); // name of first plugin string name = ""; if (plugins != null) { if(plugins.Count() > 0) { name = plugins[0].Name; } }
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.