本文整理汇总了C#中System.Security.Permissions.RegistryPermission.CanReadKey方法的典型用法代码示例。如果您正苦于以下问题:C# RegistryPermission.CanReadKey方法的具体用法?C# RegistryPermission.CanReadKey怎么用?C# RegistryPermission.CanReadKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Security.Permissions.RegistryPermission
的用法示例。
在下文中一共展示了RegistryPermission.CanReadKey方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RecuperaValor
/// <summary>
/// Recupera um valor do registro baseado na chave
/// </summary>
/// <param name="keyPath">Caminho base</param>
/// <param name="chave">chave usada para localizar o valor</param>
/// <param name="valorPadrao">Valor que deve ser usado caso não obtenha resultado, caso nulo retorna Exception</param>
/// <returns>Retorna o objeto referente a chave, caso não encontre volta uma string vazia</returns>
public static string RecuperaValor(string keyPath, string chave, string valorPadrao)
{
try
{
if (string.IsNullOrEmpty(keyPath))
{
throw new ArgumentNullException("keyPath", "O parâmetro chave não pode ser nulo");
}
if (string.IsNullOrEmpty(chave))
{
throw new ArgumentNullException("chave", "O parâmetro chave não pode ser nulo");
}
var perm1 = new RegistryPermission(RegistryPermissionAccess.Read, Key);
return perm1.CanReadKey(Key)
? Microsoft.Win32.Registry.GetValue(keyPath, chave, "").ToString()
: valorPadrao;
}
catch (Exception)
{
if (valorPadrao == null)
{
throw;
}
return valorPadrao;
}
}