diff options
| author | Bond-009 <bond.009@outlook.com> | 2024-02-07 16:24:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-07 16:24:36 +0100 |
| commit | 143ef71528eb7adfe87cd3dcb746ac655fb0aef8 (patch) | |
| tree | b679a844aa22a8e69775b3fac9d753ee111efc8b /MediaBrowser.Model/Net/SocketReceiveResult.cs | |
| parent | 7e5c5eaff8e54aaa3f1f847e1b3c0031973763fe (diff) | |
| parent | 505c09c85b9816519c795c114e6100585b35e249 (diff) | |
Merge pull request #10969 from barronpm/progress-cleanup
Progress cleanup
Diffstat (limited to 'MediaBrowser.Model/Net/SocketReceiveResult.cs')
| -rw-r--r-- | MediaBrowser.Model/Net/SocketReceiveResult.cs | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/MediaBrowser.Model/Net/SocketReceiveResult.cs b/MediaBrowser.Model/Net/SocketReceiveResult.cs deleted file mode 100644 index 1524786ea..000000000 --- a/MediaBrowser.Model/Net/SocketReceiveResult.cs +++ /dev/null @@ -1,32 +0,0 @@ -#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; } - } -} |
