class Resolv::DNS::Resource::TXT

非结构化文本资源。

属性

strings[R]

返回此 TXT 记录的字符串数组。

公共类方法

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

公共实例方法

data() 点击切换源代码

返回由 strings 连接而成的字符串。

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