Class ReceivedUdpData
Used by the sockets wrapper to hold raw data received from a UDP socket.
Inheritance
System.Object
ReceivedUdpData
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Rssdp.Infrastructure
Assembly: cs.temp.dll.dll
Syntax
public sealed class ReceivedUdpData
Properties
Buffer
The buffer to place received data into.
Declaration
public byte[] Buffer { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Byte[] |
ReceivedBytes
The number of bytes received.
Declaration
public int ReceivedBytes { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
ReceivedFrom
The UdpEndPoint the data was received from.
Declaration
public UdpEndPoint ReceivedFrom { get; set; }
Property Value
| Type | Description |
|---|---|
| UdpEndPoint |