Example #1
0
 internal Element(BaseStorage storage, Guid obj, ApplicationType appType, int identifier)
 {
     _storage = storage;
     _obj = obj;
     _appType = appType;
     _identifier = identifier;
 }
Example #2
0
 internal BcdObject(BaseStorage store, Guid id)
 {
     _storage = store;
     _id = id;
     _type = _storage.GetObjectType(id);
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the Store class.
 /// </summary>
 /// <param name="key">The registry key that is the root of the configuration database</param>
 public Store(RegistryKey key)
 {
     _store = new ThinkAwayRegistryStorage(key);
 }
Example #4
0
 /// <summary>
 /// Initializes a new instance of the Store class.
 /// </summary>
 /// <param name="key">The registry key that is the root of the configuration database</param>
 public Store(RegistryKey key)
 {
     _store = new ThinkAwayRegistryStorage(key);
 }
Example #5
0
 internal BcdObject(BaseStorage store, Guid id)
 {
     _storage = store;
     _id      = id;
     _type    = _storage.GetObjectType(id);
 }