You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
573 B
22 lines
573 B
using System;
|
|
|
|
namespace MediaBrowser.Server.Implementations.Udp
|
|
{
|
|
/// <summary>
|
|
/// Class UdpMessageReceivedEventArgs
|
|
/// </summary>
|
|
public class UdpMessageReceivedEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the bytes.
|
|
/// </summary>
|
|
/// <value>The bytes.</value>
|
|
public byte[] Bytes { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the remote end point.
|
|
/// </summary>
|
|
/// <value>The remote end point.</value>
|
|
public string RemoteEndPoint { get; set; }
|
|
}
|
|
}
|