BExplorer.Shell.Interop.ShellNotifications.UnregisterChangeNotify C# (CSharp) Method

UnregisterChangeNotify() public method

Unregister the form
public UnregisterChangeNotify ( ) : System.Boolean
return System.Boolean
        public Boolean UnregisterChangeNotify()
        {
            if (notifyid == 0) return false;
            if (Shell32.SHChangeNotifyUnregister(notifyid))
            {
                notifyid = 0;
                return true;
            }

            return false;
        }
        #endregion