Example #1
0
 /// <summary>
 /// Determines if this loader manages the specified type
 /// </summary>
 /// <param name="typeName">The type to check if this PluginManager handles</param>
 /// <returns>True if this PluginManager handles the type</returns>
 public bool ManagesType(string typeName)
 {
     if (!started)
     {
         throw new InvalidOperationException("PluginManager has not been started.");
     }
     return(LocalLoader.ManagesType(typeName));
 }