OleViewDotNet.COMRegistry.COMRegistry C# (CSharp) Method

COMRegistry() private method

Default constructor
private COMRegistry ( RegistryKey rootKey ) : System
rootKey Microsoft.Win32.RegistryKey
return System
        private COMRegistry(RegistryKey rootKey)
        {
            LoadAppIDs(rootKey);
            LoadCLSIDs(rootKey);
            LoadProgIDs(rootKey);
            LoadInterfaces(rootKey);
            LoadMimeTypes(rootKey);
            LoadPreApproved();
            LoadLowRights();
            LoadTypelibs(rootKey);
            InterfaceViewers.InterfaceViewers.LoadInterfaceViewers();
            COMUtilities.LoadTypeLibAssemblies();
        }