using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ant.Frame { /// /// 注册表基项静态域 /// /// 主要包括: /// 1.Registry.ClassesRoot 对应于HKEY_CLASSES_ROOT主键 /// 2.Registry.CurrentUser 对应于HKEY_CURRENT_USER主键 /// 3.Registry.LocalMachine 对应于 HKEY_LOCAL_MACHINE主键 /// 4.Registry.User 对应于 HKEY_USER主键 /// 5.Registry.CurrentConfig 对应于HEKY_CURRENT_CONFIG主键 /// 6.Registry.DynDa 对应于HKEY_DYN_DATA主键 /// 7.Registry.PerformanceData 对应于HKEY_PERFORMANCE_DATA主键 /// /// 版本:1.0 /// public enum RegDomain { /// /// 对应于HKEY_CLASSES_ROOT主键 /// ClassesRoot = 0, /// /// 对应于HKEY_CURRENT_USER主键 /// CurrentUser = 1, /// /// 对应于 HKEY_LOCAL_MACHINE主键 /// LocalMachine = 2, /// /// 对应于 HKEY_USER主键 /// User = 3, /// /// 对应于HEKY_CURRENT_CONFIG主键 /// CurrentConfig = 4, /// /// 对应于HKEY_DYN_DATA主键 /// DynDa = 5, /// /// 对应于HKEY_PERFORMANCE_DATA主键 /// PerformanceData = 6, } }