Class ObjectStorage
public sealed class ObjectStorage
- Inheritance
-
ObjectStorage
- Inherited Members
- Extension Methods
Methods
- ContainsFloat(string, string)
Gets if the specified prefix + key combination has a float value assigned.
- ContainsInt(string, string)
Gets if the specified prefix + key combination has an integer value assigned.
- ContainsString(string, string)
Gets if the specified prefix + key combination has a string value assigned.
- GetFloat(string, string)
Gets the stored float with the specified key.
- GetInt(string, string)
Gets the stored integer with the specified key.
- GetString(string, string)
Gets the stored string with the specified key.
- Remove(string, string)
Removes an
- Set(string, string, int, bool)
Stores the specified value using the specified unique key.
- Set(string, string, float, bool)
Stores the specified value using the specified unique key.
- Set(string, string, string, bool)
Stores the specified value using the specified unique key.