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. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note