Exemplo n.º 1
0
        protected virtual void OnChannelsUpdated(ChannelCollection collection)
        {
            var handler = ChannelsUpdated;

            if (handler != null)
            {
                handler(collection);
            }
        }
Exemplo n.º 2
0
 /// <summary>
 /// The default Constructor.
 /// </summary>
 public AvediaServer(string hostNameOrIpAddress)
 {
     _hostNameOrIpAddress = hostNameOrIpAddress;
     Receivers            = new ReceiverCollection(this);
     Channels             = new ChannelCollection(this);
 }