Storage

Storage class

Represents a temporary data storage for WebDocument.

Storage

NameDescription
Storage()

Result: Storage


containsKey

NameDescription
containsKey(String)Determines whether the storage contains an element with the specified key.

Parameters:

NameTypeDescription
keyStringKey of the value.

Result: boolean


get

NameDescription
get(String)Gets the data from the storage.

Parameters:

NameTypeDescription
keyStringKey of the value.

Result: TValue


put

NameDescription
put(String, TValue)Puts the value into the storage.

Parameters:

NameTypeDescription
keyStringKey for the value.
valueTValueValue.