System.Net.Sockets.Socket.SocketAsyncResult.CheckIfThrowDelayedException C# (CSharp) Méthode

CheckIfThrowDelayedException() public méthode

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

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