NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SocketErrors.WSAEWOULDBLOCK

Resource temporarily unavailable.

[Visual Basic]
Public Const WSAEWOULDBLOCK As Integer
[C#]
public const int WSAEWOULDBLOCK;
[C++]
public: const int WSAEWOULDBLOCK;
[JScript]
public var WSAEWOULDBLOCK : int;

Remarks

This error is returned from operatons on non-blocking sockets that cannot be completed immediately, for example Receive when no data is queued to be read from the socket. It is a non-fatal error, and the operation should be retried later.

See Also

SocketErrors Class | SocketErrors Members | System.Net.Sockets Namespace