System.Net.Sockets.Socket.SocketAsyncResult.CheckIfThrowDelayedException C# (CSharp) Method

CheckIfThrowDelayedException() public method

public CheckIfThrowDelayedException ( ) : void
return void
			public void CheckIfThrowDelayedException ()
			{
				if (delayedException != null) {
					Sock.connected = false;
					throw delayedException;
				}

				if (error != 0) {
					Sock.connected = false;
					throw new SocketException (error);
				}
			}