StateStore Type

A session store is a reader and a writer function pair keyed on strings.

Instance members

Instance member Description

this.get arg1

Full Usage: this.get arg1

Parameters:
    arg0 : string

Returns: 'T option
Modifiers: abstract
Type parameters: 'T

Get an item from the state store

arg0 : string
Returns: 'T option

this.set arg1 arg2

Full Usage: this.set arg1 arg2

Parameters:
    arg0 : string
    arg1 : 'T

Returns: WebPart
Modifiers: abstract
Type parameters: 'T

Set an item in the state store

arg0 : string
arg1 : 'T
Returns: WebPart

this.unset arg1

Full Usage: this.unset arg1

Parameters:
    arg0 : string

Returns: WebPart
Modifiers: abstract
arg0 : string
Returns: WebPart