コード例 #1
0
ファイル: RegistrySummary.cs プロジェクト: tgiqfe/PSFile
 /// <summary>
 /// セキュリティ情報を取得
 /// </summary>
 public void LoadSecurity()
 {
     using (RegistryKey regKey = RegistryControl.GetRegistryKey(Path, false, false))
     {
         LoadSecurity(regKey);
     }
 }
コード例 #2
0
ファイル: RegistrySummary.cs プロジェクト: tgiqfe/PSFile
 /// <summary>
 /// 値を取得
 /// </summary>
 public void LoadValues()
 {
     using (RegistryKey regKey = RegistryControl.GetRegistryKey(Path, false, false))
     {
         LoadValues(regKey);
     }
 }