本文整理汇总了C#中System.Json.JsonObject.TryGetValue方法的典型用法代码示例。如果您正苦于以下问题:C# JsonObject.TryGetValue方法的具体用法?C# JsonObject.TryGetValue怎么用?C# JsonObject.TryGetValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Json.JsonObject
的用法示例。
在下文中一共展示了JsonObject.TryGetValue方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetRawRows
protected static IEnumerable<JsonObject> GetRawRows(JsonObject response)
{
var rowsArray = response.TryGetValue("rows") as JsonArray;
if (rowsArray == null)
throw new ParseException("Query result is expected to contain array 'rows' property");
return rowsArray.Cast<JsonObject>();
}
示例2: Tweet
public Tweet(JsonObject json)
{
Text = json["text"]; // explicit conversion will unescape json
Text = Text.UnescapeXml(); // unescape again for & escapes
Source = json["source"];
Id = json["id_str"];
IsRetweet = json["retweeted"];
InReplyToStatusId = json["in_reply_to_status_id_str"];
InReplyToScreenName = json["in_reply_to_screen_name"];
CreatedAt = json.GetDateTime("created_at");
JsonValue entities;
if (json.TryGetValue("entities", out entities))
Entities = new Entities(entities);
JsonValue retweetedStatus;
if (json.TryGetValue("retweeted_status", out retweetedStatus))
RetweetedStatus = new Tweet((JsonObject)retweetedStatus);
User = new User(json["user"]);
}
示例3: TryGetValueTest
public void TryGetValueTest()
{
string key1 = AnyInstance.AnyString;
string key2 = AnyInstance.AnyString2;
JsonValue value1 = AnyInstance.AnyJsonValue1;
JsonValue value2 = AnyInstance.AnyJsonValue2;
JsonObject target = new JsonObject { { key1, value1 }, { key2, value2 } };
JsonValue value;
Assert.IsTrue(target.TryGetValue(key2, out value));
Assert.AreEqual(value2, value);
Assert.IsFalse(target.TryGetValue("not a key", out value));
Assert.IsNull(value);
}