Storage

Storage class

Represents a temporary data storage for WebDocument.

Storage

NameDescription
Storage()

Returns: Storage


containsKey

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

Parameters:

NameTypeDescription
keyStringKey of the value.

Returns: boolean


get

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

Parameters:

NameTypeDescription
keyStringKey of the value.

Returns: TValue


put

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

Parameters:

NameTypeDescription
keyStringKey for the value.
valueTValueValue.