API reference
API reference
Select your platform
No SDKs available
No versions available

IPersistenceLayer Interface

Mediates storage for small data that need to be persisted across projects.

Methods

GetInt ( key )
Signature
int Meta.Conduit.Editor.IPersistenceLayer.GetInt(string key)
Parameters
key: string
Returns
int
GetString ( key )
Signature
string Meta.Conduit.Editor.IPersistenceLayer.GetString(string key)
Parameters
key: string
Returns
string
HasKey ( key )
Signature
bool Meta.Conduit.Editor.IPersistenceLayer.HasKey(string key)
Parameters
key: string
Returns
bool
SetInt ( key , value )
Signature
void Meta.Conduit.Editor.IPersistenceLayer.SetInt(string key, int value)
Parameters
key: string
value: int
Returns
void
SetString ( key , value )
Signature
void Meta.Conduit.Editor.IPersistenceLayer.SetString(string key, string value)
Parameters
key: string
value: string
Returns
void