Microsoft.Win32.UnixRegistryApi.GetValueKind C# (CSharp) Méthode

GetValueKind() public méthode

public GetValueKind ( RegistryKey rkey, string name ) : RegistryValueKind
rkey RegistryKey
name string
Résultat RegistryValueKind
		public RegistryValueKind GetValueKind (RegistryKey rkey, string name)
		{
			KeyHandler self = KeyHandler.Lookup (rkey, true);
			if (self != null) 
				return self.GetValueKind (name);

			// key was removed since it was opened or it does not exist.
			return RegistryValueKind.Unknown;
		}