Table of Contents

Interface IPrefsImplementation

Namespace
Coherence.Prefs
Assembly
Coherence.Prefs.dll
public interface IPrefsImplementation

Methods

DeleteAll()

void DeleteAll()

DeleteKey(string)

void DeleteKey(string key)

Parameters

key string

GetFloat(string)

float GetFloat(string key)

Parameters

key string

Returns

float

GetFloat(string, float)

float GetFloat(string key, float defaultValue)

Parameters

key string
defaultValue float

Returns

float

GetInt(string)

int GetInt(string key)

Parameters

key string

Returns

int

GetInt(string, int)

int GetInt(string key, int defaultValue)

Parameters

key string
defaultValue int

Returns

int

GetString(string)

string GetString(string key)

Parameters

key string

Returns

string

GetString(string, string)

string GetString(string key, string defaultValue)

Parameters

key string
defaultValue string

Returns

string

HasKey(string)

bool HasKey(string key)

Parameters

key string

Returns

bool

Save()

void Save()

SetFloat(string, float)

void SetFloat(string key, float value)

Parameters

key string
value float

SetInt(string, int)

void SetInt(string key, int value)

Parameters

key string
value int

SetString(string, string)

void SetString(string key, string value)

Parameters

key string
value string