Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SocketAsyncEventArgs::RemoteEndPoint Property

 

Gets or sets the remote IP endpoint for an asynchronous operation.

Namespace:   System.Net.Sockets
Assembly:  System (in System.dll)

public:
property EndPoint^ RemoteEndPoint {
	EndPoint^ get();
	void set(EndPoint^ value);
}

Property Value

Type: System.Net::EndPoint^

An EndPoint that represents the remote IP endpoint for an asynchronous operation.

This property specifies the remote endpoint. This property can specify the remote endpoint to which to connect using the Socket::ConnectAsync method. This property can specify the remote endpoint to which to send data using Socket::SendToAsync method. This property can specify the remote endpoint from which data was received using the Socket::ReceiveFromAsync or Socket::ReceiveMessageFromAsync methods.

This remote endpoint specified by this property can include an IPv4 or IPv6 address.

This property is used with the Socket::ConnectAsync, Socket::ReceiveFromAsync, Socket::ReceiveMessageFromAsync, or Socket::SendToAsync methods.

Universal Windows Platform
Available since 10
.NET Framework
Available since 2.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Return to top
Show:
© 2017 Microsoft