UnityEngine.JSONSerializeModule.xml
2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<doc>
<members>
<assembly>
<name>UnityEngine.JSONSerializeModule</name>
</assembly>
<member name="T:UnityEngine.JsonUtility">
<summary>
<para>Utility functions for working with JSON data.</para>
</summary>
</member>
<member name="M:UnityEngine.JsonUtility.FromJson(System.String)">
<summary>
<para>Create an object from its JSON representation.</para>
</summary>
<param name="json">The JSON representation of the object.</param>
<returns>
<para>An instance of the object.</para>
</returns>
</member>
<member name="M:UnityEngine.JsonUtility.FromJson(System.String,System.Type)">
<summary>
<para>Create an object from its JSON representation.</para>
</summary>
<param name="json">The JSON representation of the object.</param>
<param name="type">The type of object represented by the Json.</param>
<returns>
<para>An instance of the object.</para>
</returns>
</member>
<member name="M:UnityEngine.JsonUtility.FromJsonOverwrite(System.String,System.Object)">
<summary>
<para>Overwrite data in an object by reading from its JSON representation.</para>
</summary>
<param name="json">The JSON representation of the object.</param>
<param name="objectToOverwrite">The object that should be overwritten.</param>
</member>
<member name="M:UnityEngine.JsonUtility.ToJson(System.Object)">
<summary>
<para>Generate a JSON representation of the public fields of an object.</para>
</summary>
<param name="obj">The object to convert to JSON form.</param>
<param name="prettyPrint">If true, format the output for readability. If false, format the output for minimum size. Default is false.</param>
<returns>
<para>The object's data in JSON format.</para>
</returns>
</member>
<member name="M:UnityEngine.JsonUtility.ToJson(System.Object,System.Boolean)">
<summary>
<para>Generate a JSON representation of the public fields of an object.</para>
</summary>
<param name="obj">The object to convert to JSON form.</param>
<param name="prettyPrint">If true, format the output for readability. If false, format the output for minimum size. Default is false.</param>
<returns>
<para>The object's data in JSON format.</para>
</returns>
</member>
</members>
</doc>