本文整理汇总了C#中IScope.TryRead方法的典型用法代码示例。如果您正苦于以下问题:C# IScope.TryRead方法的具体用法?C# IScope.TryRead怎么用?C# IScope.TryRead使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IScope
的用法示例。
在下文中一共展示了IScope.TryRead方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Parse
private static object Parse(IScope scope, Type type, string s)
{
object result;
if (!scope.TryRead(() => s, type, out result))
throw new NotSupportedException(string.Format("Unknown type: {0}", type));
return result;
}
示例2: ReadValue
private static bool ReadValue(IScope scope, IReader reader, object obj, IElementDef def, IPropertyDef property, out object value)
{
var type = property.Type;
if (type == typeof(object))
{
value = reader.ReadObject();
return true;
}
if (scope.TryRead(() => reader.ReadString(), type, out value))
return true;
var xmlReader = reader as XmlReaderImpl;
if (xmlReader != null)
{
var surrogate = scope.GetSurrogate(type);
if (surrogate != null)
{
value = CreateElement(property, obj);
surrogate.Read(xmlReader.XmlReader, value);
return true;
}
}
var elementDef = scope.GetElementDef(type);
if (elementDef != null)
{
var subScope = elementDef as IScope;
value = ReadElement(subScope ?? scope, reader, elementDef, () => CreateElement(property, obj));
return true;
}
if (ReadEnumElement(reader, type, out value))
return true;
// try read collection
var elementType = Reflector.GetItemType(type);
if (elementType != null)
{
elementDef = new CollectionDef(scope, property.Name, type, elementType);
value = def.IsImmutable ? CreateList(elementType) : CreateElement(property, obj);
ReadElement(scope, reader, elementDef, value);
return true;
}
value = null;
return false;
}