public IEnumerable<PluginItem> GetPlugins()
Return Value
Type: System.Collections.IEnumerable
Collection of plugins.
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) { var pluginsList = plugins.ToList(); if(pluginsList.Count > 0) { name = pluginsList[0].Name; } }
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.