C# Class UnityEditor.iOS.Xcode.JsonDocument

Show file Open project: CarlosHBC/UnityDecompiled Class Usage Examples

Public Properties

Property Type Description
indentString string
root JsonElementDict

Public Methods

Method Description
WriteToFile ( string path ) : void
WriteToStream ( TextWriter tw ) : void
WriteToString ( ) : string

Private Methods

Method Description
AppendIndent ( StringBuilder sb, int indent ) : void
WriteArray ( StringBuilder sb, JsonElementArray el, int indent ) : void
WriteBoolean ( StringBuilder sb, bool value ) : void
WriteDict ( StringBuilder sb, JsonElementDict el, int indent ) : void
WriteDictKeyValue ( StringBuilder sb, string key, JsonElement value, int indent ) : void
WriteInteger ( StringBuilder sb, int value ) : void
WriteString ( StringBuilder sb, string str ) : void

Method Details

WriteToFile() public method

public WriteToFile ( string path ) : void
path string
return void

WriteToStream() public method

public WriteToStream ( TextWriter tw ) : void
tw TextWriter
return void

WriteToString() public method

public WriteToString ( ) : string
return string

Property Details

indentString public property

public string indentString
return string

root public property

public JsonElementDict root
return JsonElementDict