Events should end in "ing" or "ed".
public event Action
< connectioninformation > ConnectionProblem;
Bad example
public event Action
< connectioninformation > ConnectionProblemDetected;
Good example
Events should end in "ing" or "ed".
public event Action
< connectioninformation > ConnectionProblem;
Bad example
public event Action
< connectioninformation > ConnectionProblemDetected;
Good example