DnsEndPoint 类

定义

将网络终结点表示为主机名或 IP 地址和端口号的字符串表示形式。

public ref class DnsEndPoint : System::Net::EndPoint
public class DnsEndPoint : System.Net.EndPoint
type DnsEndPoint = class
    inherit EndPoint
Public Class DnsEndPoint
Inherits EndPoint
继承
DnsEndPoint

注解

DnsEndPoint 类包含应用程序连接到主机上的服务所需的主机名或 IP 地址和远程端口信息。 通过将主机名或 IP 地址和服务的端口号组合在一起,DnsEndPoint 类会形成到服务的连接点。

构造函数

DnsEndPoint(String, Int32, AddressFamily)

使用 IP 地址、端口号和地址系列主机名或字符串表示形式初始化 DnsEndPoint 类的新实例。

DnsEndPoint(String, Int32)

使用 IP 地址和端口号的主机名或字符串表示形式初始化 DnsEndPoint 类的新实例。

属性

AddressFamily

获取 Internet 协议 (IP) 地址系列。

Host

获取主机的 Internet 协议 (IP) 地址的主机名或字符串表示形式。

Port

获取 DnsEndPoint的端口号。

方法

Create(SocketAddress)

SocketAddress 实例创建 EndPoint 实例。

(继承自 EndPoint)
Equals(Object)

比较两个 DnsEndPoint 对象。

GetHashCode()

返回 DnsEndPoint的哈希值。

GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object的浅表副本。

(继承自 Object)
Serialize()

将终结点信息序列化为 SocketAddress 实例。

(继承自 EndPoint)
ToString()

返回 DnsEndPointIP 地址和端口号的主机名或字符串表示形式。

适用于