I have a DLL including a class for managing audio and midi ports and connections. Whenever ports are registered or deregistered or connections are formed or released, this class fires an event, like ConnectionChanged with custom event arguments including properties Enum ChangeType and IEnumerable<Connection> ChangedConnections
Now my question is: Should I really just send the changed connections or change the property of the event args to Connections and send an IEnumerable containing all active connections?