Class JsonDetail
Use this detail to store JSON like data.
Inherited Members
Namespace: UnityEngine.GameFoundation
Assembly: solution.dll
Syntax
public sealed class JsonDetail : BaseDetail
Methods
| Name | Description |
|---|---|
| TryGetBuiltInDataArray<T>(string, List<T>) | Try to find the array of data with the given name and deserialize it into the given list. |
| TryGetBuiltInDataArray<T>(string, out T[]) | Try to find the array of data with the given name and deserialize it. |
| TryGetBuiltInData<T>(string, out T) | Try to find the data of the given built-in data type with the given name and deserialize it. |
| TryGetCustomDataArray<T>(string, List<T>) | Try to find the array of data with the given name and deserialize it into the given list. |
| TryGetCustomDataArray<T>(string, out T[]) | Try to find the array of data with the given name and deserialize it. |
| TryGetCustomData<T>(string, out T) | Try to find the data with the given name and deserialize it. |
| TryGetDataDictionary(string, Dictionary<string, object>) | Try to find the dictionary of data with the given name and deserialize it into the given dictionary. |