Storage
Storage class
Represents a temporary data storage for WebDocument.
Storage
Name | Description |
---|---|
Storage() |
Returns: Storage
containsKey
Name | Description |
---|---|
containsKey (String) | Determines whether the storage contains an element with the specified key. |
Parameters:
Name | Type | Description |
---|---|---|
key | String | Key of the value. |
Returns: boolean
get
Name | Description |
---|---|
get (String) | Gets the data from the storage. |
Parameters:
Name | Type | Description |
---|---|---|
key | String | Key of the value. |
Returns: TValue
put
Name | Description |
---|---|
put (String, TValue) | Puts the value into the storage. |
Parameters:
Name | Type | Description |
---|---|---|
key | String | Key for the value. |
value | TValue | Value. |
Returns: void