Пример #1
0
 /// <summary>
 /// This is the correct constructor to use to create a ComObject.
 /// </summary>
 /// <param name="Key"></param>
 public ComObject(RegistryObject Key) : base()
 {
     this.Key   = Key;
     Subkeys    = new List <RegistryObject>();
     ResultType = RESULT_TYPE.COM;
 }
Пример #2
0
 public void AddSubKey(RegistryObject subkeysIn)
 {
     Subkeys.Add(subkeysIn);
 }
Пример #3
0
 /// <summary>
 /// This is the correct constructor to use to create a ComObject.
 /// </summary>
 /// <param name="Key">The RegistryObject this ComObject is based on.</param>
 public ComObject(RegistryObject Key) : base()
 {
     this.Key   = Key;
     ResultType = RESULT_TYPE.COM;
 }