SocketAsyncEventArgs.RemoteEndPoint Proprietà

Definizione

Ottiene o imposta l'endpoint IP remoto per un'operazione asincrona.

public System.Net.EndPoint RemoteEndPoint { get; set; }
public System.Net.EndPoint? RemoteEndPoint { get; set; }

Valore della proprietà

Oggetto EndPoint che rappresenta l'endpoint IP remoto per un'operazione asincrona.

Commenti

Questa proprietà specifica l'endpoint remoto. Questa proprietà può specificare l'endpoint remoto a cui connettersi usando il Socket.ConnectAsync metodo . Questa proprietà può specificare l'endpoint remoto a cui inviare dati usando il Socket.SendToAsync metodo . Questa proprietà può specificare l'endpoint remoto da cui sono stati ricevuti i dati usando i Socket.ReceiveFromAsync metodi o Socket.ReceiveMessageFromAsync .

Questo endpoint remoto specificato da questa proprietà può includere un indirizzo IPv4 o IPv6.

Questa proprietà viene utilizzata con i Socket.ConnectAsyncmetodi , Socket.ReceiveFromAsyncSocket.ReceiveMessageFromAsync, o Socket.SendToAsync .

Si applica a

Prodotto Versioni
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

Vedi anche