You should expose events as events.
public Action
< connectioninformation > ConnectionProblem;
Bad code
public event Action
< connectioninformation > ConnectionProblem;
Good code
You should expose events as events.
public Action
< connectioninformation > ConnectionProblem;
Bad code
public event Action
< connectioninformation > ConnectionProblem;
Good code