Do you expose events as events?
Loading last updated info...
You should expose events as events.
public Action< connectioninformation > ConnectionProblem;
❌ Figure: Bad code
public event Action< connectioninformation > ConnectionProblem;
✅ Figure: Good code