keeweb/helper/win32/src/KeeWebHelper/WindowsInput/WindowsInputMessageDispatch...

28 lines
1.9 KiB
C#
Executable File

using System;
using System.Runtime.InteropServices;
using WindowsInput.Native;
namespace WindowsInput
{
/// <summary>
/// Implements the <see cref="IInputMessageDispatcher"/> by calling <see cref="NativeMethods.SendInput"/>.
/// </summary>
internal class WindowsInputMessageDispatcher : IInputMessageDispatcher
{
/// <summary>
/// Dispatches the specified list of <see cref="INPUT"/> messages in their specified order by issuing a single called to <see cref="NativeMethods.SendInput"/>.
/// </summary>
/// <param name="inputs">The list of <see cref="INPUT"/> messages to be dispatched.</param>
/// <exception cref="ArgumentException">If the <paramref name="inputs"/> array is empty.</exception>
/// <exception cref="ArgumentNullException">If the <paramref name="inputs"/> array is null.</exception>
/// <exception cref="Exception">If the any of the commands in the <paramref name="inputs"/> array could not be sent successfully.</exception>
public void DispatchInput(INPUT[] inputs)
{
if (inputs == null) throw new ArgumentNullException("inputs");
if (inputs.Length == 0) throw new ArgumentException("The input array was empty", "inputs");
var successful = NativeMethods.SendInput((UInt32)inputs.Length, inputs, Marshal.SizeOf(typeof (INPUT)));
if (successful != inputs.Length)
throw new Exception("Some simulated input commands were not sent successfully. The most common reason for this happening are the security features of Windows including User Interface Privacy Isolation (UIPI). Your application can only send commands to applications of the same or lower elevation. Similarly certain commands are restricted to Accessibility/UIAutomation applications. Refer to the project home page and the code samples for more information.");
}
}
}