protected virtual void OnChannelsUpdated(ChannelCollection collection) { var handler = ChannelsUpdated; if (handler != null) { handler(collection); } }
/// <summary> /// The default Constructor. /// </summary> public AvediaServer(string hostNameOrIpAddress) { _hostNameOrIpAddress = hostNameOrIpAddress; Receivers = new ReceiverCollection(this); Channels = new ChannelCollection(this); }