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.
30 lines
680 B
30 lines
680 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Rssdp.Infrastructure
|
|
{
|
|
/// <summary>
|
|
/// Used by the sockets wrapper to hold raw data received from a UDP socket.
|
|
/// </summary>
|
|
public sealed class ReceivedUdpData
|
|
{
|
|
/// <summary>
|
|
/// The buffer to place received data into.
|
|
/// </summary>
|
|
public byte[] Buffer { get; set; }
|
|
|
|
/// <summary>
|
|
/// The number of bytes received.
|
|
/// </summary>
|
|
public int ReceivedBytes { get; set; }
|
|
|
|
/// <summary>
|
|
/// The <see cref="UdpEndPoint"/> the data was received from.
|
|
/// </summary>
|
|
public UdpEndPoint ReceivedFrom { get; set; }
|
|
}
|
|
}
|