Class Icalendar::Parameter
In: lib/icalendar/parameter.rb
Parent: Icalendar::Content

A property can have attributes associated with it. These "property parameters" contain meta-information about the property or the property value. Property parameters are provided to specify such information as the location of an alternate text representation for a property value, the language of a text property value, the data type of the property value and other attributes.

Methods

to_s  

Public Instance methods

[Source]

# File lib/icalendar/parameter.rb, line 19
    def to_s
      s = ""
      
      s << "#{@name}="
      if is_escapable?
        s << escape(print_value())
      else
        s << print_value
      end

      s
    end

[Validate]