jellyfin/MediaBrowser.Model/Net/SocketReceiveResult.cs

33 lines
893 B
C#
Raw Normal View History

#nullable disable
2020-02-03 19:49:27 -05:00
using System.Net;
2018-12-27 18:27:57 -05: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-07 18:24:34 -05:00
{
/// <summary>
/// Gets or sets the buffer to place received data into.
2019-01-07 18:24:34 -05:00
/// </summary>
public byte[] Buffer { get; set; }
2018-12-27 18:27:57 -05:00
2019-01-07 18:24:34 -05:00
/// <summary>
/// Gets or sets the number of bytes received.
2019-01-07 18:24:34 -05:00
/// </summary>
public int ReceivedBytes { get; set; }
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the <see cref="IPEndPoint"/> the data was received from.
2018-12-27 18:27:57 -05:00
/// </summary>
public IPEndPoint RemoteEndPoint { get; set; }
/// <summary>
/// Gets or sets the local <see cref="IPAddress"/>.
/// </summary>
public IPAddress LocalIPAddress { get; set; }
2018-12-27 18:27:57 -05:00
}
}