BeardedManStudios.Network.CachedUdpClient.EndSend C# (CSharp) Méthode

EndSend() public méthode

public EndSend ( IAsyncResult asyncResult ) : int
asyncResult IAsyncResult
Résultat int
		public int EndSend(IAsyncResult asyncResult)
		{
			CheckDisposed();

			if (asyncResult == null)
			{
				throw new ArgumentNullException("asyncResult is a null reference");
			}

			return (socket.EndSend(asyncResult));
		}