# File lib/cgikit.rb, line 4175
        def to_s
                buf = "#@name="
                if @value   then buf << CKUtilities.escape_url(@value.to_s) end
                if @domain  then buf << "; domain=#@domain" end
                if @path         then buf << "; path=#@path" end
                if @expires then buf << "; expires=#{CKUtilities.date(@expires)}" end
                if @secure == true then buf << '; secure' end
                buf
        end