using System; namespace MediaBrowser.Common.Net { /// /// Class UdpMessageReceivedEventArgs /// public class UdpMessageReceivedEventArgs : EventArgs { /// /// Gets or sets the bytes. /// /// The bytes. public byte[] Bytes { get; set; } /// /// Gets or sets the remote end point. /// /// The remote end point. public string RemoteEndPoint { get; set; } } }