Exemple #1
0
 public SPJsonObject(JsonKeyValueWriter json, string name)
 {
     _json = json;
     _json.WritePropertyName(name);
     _json.WriteStartObject();
 }
Exemple #2
0
 public SPJsonObject(JsonKeyValueWriter json)
 {
     _json = json;
     _json.WriteStartObject();
 }