System.Net.Sockets.Socket.Worker.Receive C# (CSharp) Method

Receive() public method

public Receive ( ) : void
return void
			public void Receive ()
			{
				if (result.operation == SocketOperation.ReceiveGeneric) {
					ReceiveGeneric ();
					return;
				}
				// Actual recv() done in the runtime
				result.Complete ();
			}