AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.8.1" />

.NET API 1,214,976 bytes

 ModifierExtensions

static class ModifierExtensions
A couple of useful extensions for the modifier list.
namespace AngleSharp.Dom.Events { 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); } } }