UdpMessageReceivedEventArgs.cs 573 B

123456789101112131415161718192021
  1. using System;
  2. namespace MediaBrowser.Server.Implementations.Udp
  3. {
  4. /// <summary>
  5. /// Class UdpMessageReceivedEventArgs
  6. /// </summary>
  7. public class UdpMessageReceivedEventArgs : EventArgs
  8. {
  9. /// <summary>
  10. /// Gets or sets the bytes.
  11. /// </summary>
  12. /// <value>The bytes.</value>
  13. public byte[] Bytes { get; set; }
  14. /// <summary>
  15. /// Gets or sets the remote end point.
  16. /// </summary>
  17. /// <value>The remote end point.</value>
  18. public string RemoteEndPoint { get; set; }
  19. }
  20. }