jellyfin/MediaBrowser.Model/Net/SocketReceiveResult.cs

25 lines
722 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Net
{
/// <summary>
/// Used by the sockets wrapper to hold raw data received from a UDP socket.
/// </summary>
public sealed class SocketReceiveResult
2019-01-08 00:24:34 +01:00
{
/// <summary>
/// The buffer to place received data into.
/// </summary>
public byte[] Buffer { get; set; }
2018-12-28 00:27:57 +01:00
2019-01-08 00:24:34 +01:00
/// <summary>
/// The number of bytes received.
/// </summary>
public int ReceivedBytes { get; set; }
2018-12-28 00:27:57 +01:00
/// <summary>
/// The <see cref="IpEndPointInfo"/> the data was received from.
/// </summary>
public IpEndPointInfo RemoteEndPoint { get; set; }
public IpAddressInfo LocalIPAddress { get; set; }
}
}