OpenTween.HookGlobalHotkey.UnregisterAllOriginalHotkey C# (CSharp) Method

UnregisterAllOriginalHotkey() public method

public UnregisterAllOriginalHotkey ( ) : void
return void
        public void UnregisterAllOriginalHotkey()
        {
            foreach (ushort hotkeyId in this._hotkeyID.Keys)
            {
                Win32Api.UnregisterGlobalHotKey(hotkeyId, this._targetForm);
            }
            this._hotkeyID.Clear();
        }