I am trying to get a plugin from a pluginassembly object using early bindings.
List<PluginAssembly> pluginList;
pluginList = xrmContext.PluginAssemblySet
    .Where(Plugin => Plugin.SolutionId == solution.Id).ToList();
foreach (PluginAssembly tempPlugin in pluginList)
{...}
Now I want to retrieve the Plugins in the assembly but I can't seem to find a class named Plugin or a clear defined collection in the PluginAssembly object.
How do I retrieve the Plugin object?
 
     
     
    