类 Resolv::DNS::Resource::TXT

非结构化文本资源。

属性

strings[R]

返回此 TXT 记录的 Array 字符串。

公共类方法

new(first_string, *rest_strings) 点击切换源代码
# File lib/resolv.rb, line 2423
def initialize(first_string, *rest_strings)
  @strings = [first_string, *rest_strings]
end

公共实例方法

data() 点击切换源代码

返回 strings 中连接的字符串。

# File lib/resolv.rb, line 2435
def data
  @strings.join("")
end