aboutsummaryrefslogtreecommitdiff
path: root/RSSDP/ReceivedUdpData.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-04 04:31:05 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-04 04:31:05 -0400
commit6d250c4050ceb0bda33aad6a484fd05e508c4e27 (patch)
tree9776c6fe796bcbbea2d753ddd78d925a5645d69a /RSSDP/ReceivedUdpData.cs
parentc29394a81a8d00e16e2706850ae9127933e73cda (diff)
make dlna project portable
Diffstat (limited to 'RSSDP/ReceivedUdpData.cs')
-rw-r--r--RSSDP/ReceivedUdpData.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/RSSDP/ReceivedUdpData.cs b/RSSDP/ReceivedUdpData.cs
deleted file mode 100644
index d1c2ca3c9..000000000
--- a/RSSDP/ReceivedUdpData.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Rssdp.Infrastructure
-{
- /// <summary>
- /// Used by the sockets wrapper to hold raw data received from a UDP socket.
- /// </summary>
- public sealed class ReceivedUdpData
- {
- /// <summary>
- /// The buffer to place received data into.
- /// </summary>
- public byte[] Buffer { get; set; }
-
- /// <summary>
- /// The number of bytes received.
- /// </summary>
- public int ReceivedBytes { get; set; }
-
- /// <summary>
- /// The <see cref="UdpEndPoint"/> the data was received from.
- /// </summary>
- public UdpEndPoint ReceivedFrom { get; set; }
- }
-}