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

SendGeneric() public method

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