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

ReceiveGeneric() public method

public ReceiveGeneric ( ) : void
return void
			public void ReceiveGeneric ()
			{
				int total = 0;
				try {
					total = result.Sock.Receive (result.Buffers, result.SockFlags);
				} catch (Exception e) {
					result.Complete (e);
					return;
				}
				result.Complete (total);
			}