| GetValueAsBool(key) | Retrieves the value associated with the specified key as a bool. |
| GetValueAsByte(key) | Retrieves the value associated with the specified key as a byte. |
| GetValueAsTimeSpan(key) | Retrieves the value associated with the specified key as a TimeSpan. |
| GetValueAsDateTime(key) | Retrieves the value associated with the specified key as a DateTime. |
| GetValueAsLong(key) | Retrieves the value associated with the specified key as a long. |
| GetValueAsDecimal(key) | Retrieves the value associated with the specified key as a decimal. |
| GetValueAsDouble(key) | Retrieves the value associated with the specified key as a double. |
| GetValueAsSbyte(key) | Retrieves the value associated with the specified key as a sbyte. |
| GetValueAsInt(key) | Retrieves the value associated with the specified key as a int. |
| GetValueJsonAsType<T>(key) | Deserializes a JSON string stored under the given key into an object of type T. |
| GetValueAsUlong(key) | Retrieves the value associated with the specified key as a ulong. |
| GetValueAsShort(key) | Retrieves the value associated with the specified key as a short. |
| GetValueAsChar(key) | Retrieves the value associated with the specified key as a char. |
| GetValueJsonAsType(key, type) | Deserializes a JSON string stored under the given key into an object of the specified type. |
| GetValueAsUshort(key) | Retrieves the value associated with the specified key as a ushort. |
| GetValueAsString(key) | Retrieves the value associated with the specified key as a string. |
| GetValueAsT<T>(key) | Retrieves the value associated with the specified key and converts it to the specified type T. |
| GetValueAsUint(key) | Retrieves the value associated with the specified key as a uint. |
| GetValueAsDateTimeOffset(key) | Retrieves the value associated with the specified key as a DateTimeOffset. |
| GetValueAsFloat(key) | Retrieves the value associated with the specified key as a float. |