class Resolv::DNS::Resource::TXT
Unstructured text resource.
Attributes
Public Class Methods
new
(first_string, *rest_strings)
# File lib/resolv.rb, line 2426 def initialize(first_string, *rest_strings) @strings = [first_string, *rest_strings] end
Public Instance Methods
data
()
Returns the concatenated string from strings
.
# File lib/resolv.rb, line 2438 def data @strings.join("") end