aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Net/SocketReceiveResult.cs
blob: 1524786ea7a6c15016bd4a7a1f95b041accdf1a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#nullable disable

using System.Net;

namespace MediaBrowser.Model.Net
{
    /// <summary>
    /// Used by the sockets wrapper to hold raw data received from a UDP socket.
    /// </summary>
    public sealed class SocketReceiveResult
    {
        /// <summary>
        /// Gets or sets the buffer to place received data into.
        /// </summary>
        public byte[] Buffer { get; set; }

        /// <summary>
        /// Gets or sets the number of bytes received.
        /// </summary>
        public int ReceivedBytes { get; set; }

        /// <summary>
        /// Gets or sets the <see cref="IPEndPoint"/> the data was received from.
        /// </summary>
        public IPEndPoint RemoteEndPoint { get; set; }

        /// <summary>
        /// Gets or sets the local <see cref="IPAddress"/>.
        /// </summary>
        public IPAddress LocalIPAddress { get; set; }
    }
}