Method
CamelNameValueArrayget
since: 3.24
Declaration [src]
gboolean
camel_name_value_array_get (
const CamelNameValueArray* array,
guint index,
const gchar** out_name,
const gchar** out_value
)
Description [src]
Returns the name and the value of the element at index index. Either
of the out_name and out_value can be NULL, to not return that part.
Available since: 3.24
Parameters
index-
Type:
guintAn index.
out_name-
Type:
const gchar**A place to store the name of the element, or
NULL.The argument will be set by the function. The argument can be set to NULLby the method.The caller of the method takes ownership of the returned data, and is responsible for freeing it. The value is a NUL terminated UTF-8 string. out_value-
Type:
const gchar**A place to store the value of the element, or
NULL.The argument will be set by the function. The argument can be set to NULLby the method.The caller of the method takes ownership of the returned data, and is responsible for freeing it. The value is a NUL terminated UTF-8 string.