Unstructured text resource.

Methods
D
N
Constants
TypeValue = 16
 
Attributes
[R] strings

Returns an Array of Strings for this TXT record.

Class Public methods
new(first_string, *rest_strings)
# File lib/resolv.rb, line 1936
def initialize(first_string, *rest_strings)
  @strings = [first_string, *rest_strings]
end
Instance Public methods
data()

Returns the concatenated string from strings.

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