Interface IJsonServiceProvider
Adapter interface for supporting json conversion compatible with the plugin.
Namespace: VoxelBusters.EssentialKit
Assembly: cs.temp.dll.dll
Syntax
public interface IJsonServiceProvider
Methods
FromJson(String)
Create an object from specified JSON representation.
Declaration
object FromJson(string jsonString)
Parameters
Type | Name | Description |
---|---|---|
System.String | jsonString | Json string. |
Returns
Type | Description |
---|---|
System.Object | The object. |
ToJson(Object)
Generate a JSON representation of the given object.
Declaration
string ToJson(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | Object. |
Returns
Type | Description |
---|---|
System.String | The json. |