コード例 #1
0
ファイル: Element.cs プロジェクト: AnotherAltr/Rc.Core
 internal Element(BaseStorage storage, Guid obj, ApplicationType appType, int identifier)
 {
     _storage = storage;
     _obj = obj;
     _appType = appType;
     _identifier = identifier;
 }
コード例 #2
0
ファイル: Store.cs プロジェクト: AnotherAltr/Rc.Core
 /// <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 FileSystemRegistryStorage(key);
 }
コード例 #3
0
ファイル: BcdObject.cs プロジェクト: AnotherAltr/Rc.Core
 internal BcdObject(BaseStorage store, Guid id)
 {
     _storage = store;
     _id = id;
     _type = _storage.GetObjectType(id);
 }