ZForge.Win32.RemovableDriveDetector.DisableQueryRemove C# (CSharp) 메소드

DisableQueryRemove() 공개 메소드

Unhooks any currently hooked drive so that the query remove message is not generated for it.
public DisableQueryRemove ( ) : void
리턴 void
        public void DisableQueryRemove()
        {
            if (mDeviceNotifyHandle != IntPtr.Zero)
            {
                RegisterForDeviceChange(false, null);
            }
        }