示例#1
0
 internal BcdObject(BaseStorage store, Guid id)
 {
     _storage = store;
     _id      = id;
     _type    = _storage.GetObjectType(id);
 }
示例#2
0
文件: Store.cs 项目: Arsslensoft/ALFX
 /// <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 AlIORegistryStorage(key);
 }