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