连接到远程主机语法
在 C# 中,当我使用代码时:
public System.IAsyncResult BeginConnect(System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)
我使用正在通信的远程主机的 IP 地址和端口号来声明 EndPoint。 在这种情况下,端口号代表我的系统或远程主机上的端口?
In c# when I use the code :
public System.IAsyncResult BeginConnect(System.Net.EndPoint remoteEP, System.AsyncCallback callback, object state)
I declare the EndPoint with the ip-address of the remote host am communicating with and a port number. In this case the port number represents a port on my system or on the remote host??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您连接到远程端点,因此该端口是远程计算机上的端口。
You connect to a remote endpoint so the port is the port on remote machine.