Microsoft.Win32.UnixRegistryApi.Flush C# (CSharp) 메소드

Flush() 공개 메소드

public Flush ( RegistryKey rkey ) : void
rkey RegistryKey
리턴 void
		public void Flush (RegistryKey rkey)
		{
			KeyHandler self = KeyHandler.Lookup (rkey, false);
			if (self == null) {
				// we do not need to flush changes as key is marked for deletion
				return;
			}
			self.Flush ();
		}