<PackageReference Include="NETStandard.Library" Version="2.0.2" />

System.Threading.EventWaitHandle

public class EventWaitHandle : WaitHandle
namespace System.Threading { public class EventWaitHandle : WaitHandle { public EventWaitHandle(bool initialState, EventResetMode mode); public EventWaitHandle(bool initialState, EventResetMode mode, string name); public EventWaitHandle(bool initialState, EventResetMode mode, string name, out bool createdNew); public static EventWaitHandle OpenExisting(string name); public bool Reset(); public bool Set(); public static bool TryOpenExisting(string name, out EventWaitHandle result); } }