AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.2.0-beta.448" />

 ModifierExtensions

static class ModifierExtensions
A couple of useful extensions for the modifier list.
using System.Runtime.CompilerServices; namespace AngleSharp.Html.Dom.Events { [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.Nullable(0)] internal static class ModifierExtensions { public static bool IsCtrlPressed(this string modifierList) { return false; } public static bool IsMetaPressed(this string modifierList) { return false; } public static bool IsShiftPressed(this string modifierList) { return false; } public static bool IsAltPressed(this string modifierList) { return false; } public static bool ContainsKey(this string modifierList, string key) { return modifierList.Contains(key); } } }