SocketTaskExtensions.SendToAsync Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Envía datos de forma asincrónica a un host remoto concreto.
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::Task<int> ^ SendToAsync(System::Net::Sockets::Socket ^ socket, ArraySegment<System::Byte> buffer, System::Net::Sockets::SocketFlags socketFlags, System::Net::EndPoint ^ remoteEP);
public static System.Threading.Tasks.Task<int> SendToAsync (this System.Net.Sockets.Socket socket, ArraySegment<byte> buffer, System.Net.Sockets.SocketFlags socketFlags, System.Net.EndPoint remoteEP);
static member SendToAsync : System.Net.Sockets.Socket * ArraySegment<byte> * System.Net.Sockets.SocketFlags * System.Net.EndPoint -> System.Threading.Tasks.Task<int>
<Extension()>
Public Function SendToAsync (socket As Socket, buffer As ArraySegment(Of Byte), socketFlags As SocketFlags, remoteEP As EndPoint) As Task(Of Integer)
Parámetros
- socket
- Socket
Socket en el que realizar la operación.
- buffer
- ArraySegment<Byte>
Matriz que contiene los datos para enviar.
- socketFlags
- SocketFlags
Combinación bit a bit de los valores de SocketFlags.
Devoluciones
Tarea asincrónica que se completa con el número de bytes enviados si la operación se realizó correctamente. En caso contrario, la tarea se completará con un error de socket no válido.
Excepciones
remoteEP
es null
.
Error al intentar acceder al socket.
El Socket se ha cerrado.