22 references to Set
Microsoft.VisualStudio.TestPlatform.Common (22)
Utilities\SimpleJSON.cs (22)
1268set { Set(new JSONArray()).Add(value); } 1274set { Set(new JSONObject()).Add(aKey, value); } 1279Set(new JSONArray()).Add(aItem); 1284Set(new JSONObject()).Add(aKey, aItem); 1309get { Set(new JSONNumber(0)); return 0; } 1310set { Set(new JSONNumber(value)); } 1315get { Set(new JSONNumber(0.0f)); return 0.0f; } 1316set { Set(new JSONNumber(value)); } 1321get { Set(new JSONNumber(0.0)); return 0.0; } 1322set { Set(new JSONNumber(value)); } 1330Set(new JSONString("0")); 1332Set(new JSONNumber(0.0)); 1338Set(new JSONString(value.ToString(CultureInfo.InvariantCulture))); 1340Set(new JSONNumber(value)); 1349Set(new JSONString("0")); 1351Set(new JSONNumber(0.0)); 1357Set(new JSONString(value.ToString(CultureInfo.InvariantCulture))); 1359Set(new JSONNumber(value)); 1365get { Set(new JSONBool(false)); return false; } 1366set { Set(new JSONBool(value)); } 1371get { return Set(new JSONArray()); } 1376get { return Set(new JSONObject()); }