ApplicationState <StateT>
Index
Methods
deserialize
A function that is able to deserialize the serialized value output by serialize into a StateT
Parameters
serializedState: string
Returns StateT
getCurrentState
Should return the current value of StateT. This method is called by establish and reEstablish before the browser redirected to the Open ID connect provider. The same value is then restored after TwinfinitySession has been successfully established.
Returns Promise<StateT>
serialize
A function that serializes StateT to a string such that it can be deserialized by deserialize
Parameters
state: StateT
Returns string
ApplicationState allows an application to recover its state StateT from before the Twinfinity session was established.