# File lib/cgikit.rb, line 2064
 def to_s
		buf = "#@name="
		if @value          then buf << CKUtilities.escape_url(@value) 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