Class SocketReceiveResult
Used by the sockets wrapper to hold raw data received from a UDP socket.
Inheritance
System.Object
SocketReceiveResult
Namespace: MediaBrowser.Model.Net
Assembly: MediaBrowser.Model.dll
Syntax
public sealed class SocketReceiveResult
Properties
Buffer
The buffer to place received data into.
Declaration
public byte[] Buffer { get; set; }
Property Value
Type | Description |
---|---|
System.Byte[] |
LocalIPAddress
Declaration
public IPAddress LocalIPAddress { get; set; }
Property Value
Type | Description |
---|---|
System.Net.IPAddress |
ReceivedBytes
The number of bytes received.
Declaration
public int ReceivedBytes { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
RemoteEndPoint
Declaration
public IPEndPoint RemoteEndPoint { get; set; }
Property Value
Type | Description |
---|---|
System.Net.IPEndPoint |