Nebula
Orchestrator

JsonWriter

Just enough JSON writing for the dashboard state document; avoids a JSON library dependency in the runtime.

generated from the sources
public sealed class JsonWriter

Just enough JSON writing for the dashboard state document; avoids a JSON library dependency in the runtime.

Constructors

JsonWriter

public JsonWriter(StringBuilder sb);

Methods

BeginObject

public void BeginObject();

EndObject

public void EndObject();

BeginArray

public void BeginArray();

EndArray

public void EndArray();

Key

public void Key(string name);

Value

public void Value(string s);
public void Value(bool b);
public void Value(long n);
public void Value(ulong n);
public void Value(double d);

Prop

public void Prop(string name, string s);
public void Prop(string name, bool b);
public void Prop(string name, int n);
public void Prop(string name, uint n);
public void Prop(string name, long n);
public void Prop(string name, ulong n);
public void Prop(string name, float f);
public void Prop(string name, double d);

Quote

public static string Quote(string s);

On this page