initial commit
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
using System;
|
||||
using Microsoft.Win32;
|
||||
|
||||
namespace Quasar.Server.Extensions
|
||||
{
|
||||
public static class RegistryKeyExtensions
|
||||
{
|
||||
public static string RegistryTypeToString(this RegistryValueKind valueKind, object valueData)
|
||||
{
|
||||
if (valueData == null)
|
||||
return "(value not set)";
|
||||
|
||||
switch (valueKind)
|
||||
{
|
||||
case RegistryValueKind.Binary:
|
||||
return ((byte[])valueData).Length > 0 ? BitConverter.ToString((byte[])valueData).Replace("-", " ").ToLower() : "(zero-length binary value)";
|
||||
case RegistryValueKind.MultiString:
|
||||
return string.Join(" ", (string[])valueData);
|
||||
case RegistryValueKind.DWord: //Convert with hexadecimal before int
|
||||
return String.Format("0x{0} ({1})", ((uint)((int)valueData)).ToString("x8"), ((uint)((int)valueData)).ToString());
|
||||
case RegistryValueKind.QWord:
|
||||
return String.Format("0x{0} ({1})", ((ulong)((long)valueData)).ToString("x8"), ((ulong)((long)valueData)).ToString());
|
||||
case RegistryValueKind.String:
|
||||
case RegistryValueKind.ExpandString:
|
||||
return valueData.ToString();
|
||||
case RegistryValueKind.Unknown:
|
||||
default:
|
||||
return string.Empty;
|
||||
}
|
||||
}
|
||||
|
||||
public static string RegistryTypeToString(this RegistryValueKind valueKind)
|
||||
{
|
||||
switch (valueKind)
|
||||
{
|
||||
case RegistryValueKind.Binary:
|
||||
return "REG_BINARY";
|
||||
case RegistryValueKind.MultiString:
|
||||
return "REG_MULTI_SZ";
|
||||
case RegistryValueKind.DWord:
|
||||
return "REG_DWORD";
|
||||
case RegistryValueKind.QWord:
|
||||
return "REG_QWORD";
|
||||
case RegistryValueKind.String:
|
||||
return "REG_SZ";
|
||||
case RegistryValueKind.ExpandString:
|
||||
return "REG_EXPAND_SZ";
|
||||
case RegistryValueKind.Unknown:
|
||||
return "(Unknown)";
|
||||
default:
|
||||
return "REG_NONE";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user