Пример #1
0
 public RegistryHive(File file)
 {
     m_stream = file;
     try {
         m_root = new RegistryKey(m_stream);
     } catch {
         throw new Exception("Not a valid hive");
     }
 }
Пример #2
0
 public VirtualRegistryKey(RegistryKey realKey)
 {
     m_keys = new List<RegistryKey> { realKey };
     m_virtualChildren = new List<VirtualRegistryKey>();
 }
Пример #3
0
 public VirtualRegistryKey(RegistryKey realKey, String name)
     : this(realKey)
 {
     m_name = name;
 }