SocketAsyncEventArgs.RemoteEndPoint 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定非同步作業的遠端 IP 端點。
public:
property System::Net::EndPoint ^ RemoteEndPoint { System::Net::EndPoint ^ get(); void set(System::Net::EndPoint ^ value); };
public System.Net.EndPoint RemoteEndPoint { get; set; }
public System.Net.EndPoint? RemoteEndPoint { get; set; }
member this.RemoteEndPoint : System.Net.EndPoint with get, set
Public Property RemoteEndPoint As EndPoint
屬性值
EndPoint,表示非同步作業的遠端 IP 端點。
備註
此屬性會指定遠端端端點。 這個屬性可以指定要使用 Socket.ConnectAsync 方法連線的遠端端點。 這個屬性可以指定要使用 Socket.SendToAsync 方法傳送數據的遠端端點。 這個屬性可以指定使用 Socket.ReceiveFromAsync 或 Socket.ReceiveMessageFromAsync 方法接收數據的遠端端點。
這個屬性指定的遠端端點可以包含 IPv4 或 IPv6 位址。
這個屬性會與、 Socket.ReceiveFromAsyncSocket.ReceiveMessageFromAsync、 或 Socket.SendToAsync 方法搭配Socket.ConnectAsync使用。