UdpClient::Available Property
Gets the amount of data received from the network that is available to read.
Assembly: System (in System.dll)
| Exception | Condition |
|---|---|
| SocketException | An error occurred while attempting to access the socket. See the Remarks section for more information. |
| ObjectDisposedException | The Socket has been closed. |
The Available property is used to determine the amount of data queued in the network buffer for reading. If data is available, call Read to get the data. If no data is available, the Available property returns 0.
If the remote host shuts down or closes the connection, the Available property throws a SocketException.
Note |
|---|
If you receive a SocketException, use SocketException::ErrorCode to obtain the specific error code and refer to the Windows Sockets version 2 API error code documentation in the MSDN library at http://msdn.microsoft.com/library/ for a detailed description of the error. |
Available since 2.0
