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

SetValue() public méthode

public SetValue ( RegistryKey rkey, string name, object value ) : void
rkey RegistryKey
name string
value object
Résultat void
		public void SetValue (RegistryKey rkey, string name, object value)
		{
			KeyHandler self = KeyHandler.Lookup (rkey, true);
			if (self == null)
				throw RegistryKey.CreateMarkedForDeletionException ();
			self.SetValue (name, value);
		}

Same methods

UnixRegistryApi::SetValue ( RegistryKey rkey, string name, object value, RegistryValueKind valueKind ) : void