コード例 #1
0
ファイル: Element.cs プロジェクト: alexcmd/DiscUtils
 internal Element(BaseStorage storage, Guid obj, ApplicationType appType, int identifier)
 {
     _storage = storage;
     _obj = obj;
     _appType = appType;
     _identifier = identifier;
 }
コード例 #2
0
ファイル: Store.cs プロジェクト: easymetadata/DiscUtils
 /// <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 DiscUtilsRegistryStorage(key);
 }
コード例 #3
0
 internal BcdObject(BaseStorage store, Guid id)
 {
     _storage = store;
     _id = id;
     _type = _storage.GetObjectType(id);
 }
コード例 #4
0
 internal BcdObject(BaseStorage store, Guid id)
 {
     _storage = store;
     _id      = id;
     _type    = _storage.GetObjectType(id);
 }
コード例 #5
0
ファイル: Store.cs プロジェクト: git-thinh/MediaPortal-2
 /// <summary>
 /// Initializes the store from a registry key.
 /// </summary>
 /// <param name="key">The registry key that is the root of the configuration database</param>
 public Store(RegistryKey key)
 {
     _store = new DiscUtilsRegistryStorage(key);
 }