Web Session Storage - Remove Method

Remove an item

Member of Web Session Storage (PRIM_WEB.SessionStorage)

Parameters

NameTypeData TypeDescription
Key*InputUnicode StringKey used to identify the item

Details

The Remove method allows a stored item to be deleted using its Name.
 
Attempting to remove an item which does not exist will result in a run time failure.

Example

Removing a SessionStorage item.
If (#sys_web.SessionStorage<#Name> *IsNot *null)
 
   #Value := #sys_web.SessionStorage.Remove<#Name>
 
Endif

See also

All Component Classes

Technical Reference

Febuary 18 V14SP2