StreamSocketInformation.RemotePort 属性

定义

获取与 StreamSocket 对象关联的远程网络目标的 TCP 端口号或服务名称。

public:
 property Platform::String ^ RemotePort { Platform::String ^ get(); };
winrt::hstring RemotePort();
public string RemotePort { get; }
var string = streamSocketInformation.remotePort;
Public ReadOnly Property RemotePort As String

属性值

String

Platform::String

winrt::hstring

建立连接后远程网络终结点的 TCP 端口号。

Windows 要求

应用功能
ID_CAP_NETWORKING [Windows Phone]

注解

RemoteHostName 属性表示与 StreamSocket 对象关联的远程网络目标的远程主机名或 IP 地址。 RemoteServiceName 属性表示与 StreamSocket 对象关联的远程网络目标的远程服务名称或 TCP 端口号。 RemoteHostNameRemoteServiceName 属性将传递到 StreamSocket 上的 ConnectAsync 方法,以建立连接。

建立连接后, RemoteAddress 属性包含 IP 地址,RemotePort 属性包含套接字连接的远程终结点的 TCP 端口号。 在建立连接之前, RemoteAddress 属性为 null,RemotePort 属性包含空字符串。

适用于

另请参阅