コード例 #1
0
 public JsonValue(JsonDynamicObject obj)
 {
     _value  = default(Utf8String);
     _object = obj;
     _type   = JsonReader.JsonValueType.Object;
 }
コード例 #2
0
 public JsonValue(JsonReader.JsonValueType type)
 {
     _type   = type;
     _value  = default(Utf8String);
     _object = null;
 }
コード例 #3
0
 public JsonValue(Utf8String value, JsonReader.JsonValueType type = JsonReader.JsonValueType.String)
 {
     _value  = value;
     _object = null;
     _type   = type;
 }