Lines Matching refs:key
40  <var>parameter</var> = <var>key</var> <code>"="</code>
42  <var>key</var> = 1*<var>schar</var><br/>
86 returns whether this URL has a parameter with a given key.
88 @param key
89 a non-escaped key.
92 <TRUE/> if this URL has at least one parameter with the given key. In
93 particular, if <code>key</code> is an empty <atom>string</atom>, <FALSE/>
96 boolean hasParameter([in] string key);
99 returns the value of a parameter with a given key.
101 @param key
102 a non-escaped key.
105 the non-escaped value of the first parameter with the given key. If
106 there is no parameter with the given key, or if <code>key</code> is an
109 string getParameter([in] string key);
112 sets the value of a parameter with a given key.
114 @param key
115 a non-escaped key
119 parameter with this key, the value of its first appearance will be replaced.
120 Otherwise, a parameter with the given key/value will be appended.
123 if <arg>key</arg> is empty
127 void setParameter( [in] string key, [in] string value )