void IActionQueue.Enqueue(Action action) { if (action == null) { return; } base.Enqueue(action); OnActionAdded?.Invoke(this, EventArgs.Empty); }
public void NotifyCallbacksChanged(FormsWebView sender, string key, bool isGlobal) { OnActionAdded?.Invoke(sender, key, isGlobal); }