本文整理汇总了C#中System.Dynamic.ExpandoObject.TryGetValue方法的典型用法代码示例。如果您正苦于以下问题:C# ExpandoObject.TryGetValue方法的具体用法?C# ExpandoObject.TryGetValue怎么用?C# ExpandoObject.TryGetValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Dynamic.ExpandoObject
的用法示例。
在下文中一共展示了ExpandoObject.TryGetValue方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ExpandoTryGetValueIgnoreCase
public static bool ExpandoTryGetValueIgnoreCase(ExpandoObject expando, object indexClass, int index, string name, out object value) {
ContractUtils.RequiresNotNull(expando, "expando");
int result = expando.TryGetValue((ExpandoClass)indexClass, index, true, name, out value);
if (result == ExpandoObject.AmbiguousMatchFound) {
throw Error.AmbiguousMatchInExpandoObject();
} else {
return result >= 0;
}
}
示例2: ExpandoTryGetValue
public static bool ExpandoTryGetValue(ExpandoObject expando, object indexClass, int index, string name, bool ignoreCase, out object value)
{
return expando.TryGetValue(indexClass, index, name, ignoreCase, out value);
}
示例3: ExpandoTryGetValue
public static bool ExpandoTryGetValue(ExpandoObject expando, object indexClass, int index, string name, out object value) {
ContractUtils.RequiresNotNull(expando, "expando");
return expando.TryGetValue((ExpandoClass)indexClass, index, false, name, out value) >= 0;
}