jellyfin/MediaBrowser.Model/Net/SocketReceiveResult.cs

33 lines
893 B
C#
Raw Normal View History

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