Is it possible to get loaded & enabled plugin list with RhinoCommon?

Hi everyone! I need to check if plugin A is enabled from plugin B. Inside Plugin B I need to warn the user if Plugin A is enabled. Is it possible to get a list of enabled plugins with Rhinocommon? Thanks.

I solved the issue by the following code:

    private void controlPlugin()
    {
        bool isLoaded = PlugIn.GetPlugInInfo(new Guid("xxxxxxxxxxxxxxxxxx")).IsLoaded;
        if (isLoaded) { csLogger.msgBox("Disable Plugin A and restart Rhino!"); throw new Exception(); }
    }