Example #1
0
 public KeyValuePair(string key, JsonValue value)
 {
     this.key   = key;
     this.value = value;
 }
Example #2
0
 public JsonValueDebugView(JsonValue jsonValue)
 {
     this.jsonValue = jsonValue;
 }
 public KeyValuePair(JsonObject parent, string key, JsonValue value)
 {
     this.parent = parent;
     this.key    = key;
     this.value  = value;
 }