boolean if the delete occured (false if key didn't exist)
returns the value for the given key. returns undefined
if the key doesn't exist
a boolean if the value exists
store a key/value pair, overwriting any set previously
get a value if it exists, otherwise return a default value
A dictionary that is available across your entire request, including across page naviagions.
Also if you choose
outputAsJson:true
(in [[IPageRequest]]), this dictionary will be in the JSON response output undercontent.automation.storage
//store a value that can be read by other pages, and is also available in the response output page.meta.store.set("answer",42);