本文整理汇总了C#中IDictionaryAdapter.ShouldClearProperty方法的典型用法代码示例。如果您正苦于以下问题:C# IDictionaryAdapter.ShouldClearProperty方法的具体用法?C# IDictionaryAdapter.ShouldClearProperty怎么用?C# IDictionaryAdapter.ShouldClearProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IDictionaryAdapter
的用法示例。
在下文中一共展示了IDictionaryAdapter.ShouldClearProperty方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: WriteProperty
private void WriteProperty(XPathResult result, ref object value, IDictionaryAdapter dictionaryAdapter)
{
var propertyType = result.Type;
var shouldRemove = (value == null);
if (result.Property != null)
{
shouldRemove = shouldRemove || dictionaryAdapter.ShouldClearProperty(result.Property, value);
}
if (shouldRemove)
{
result.Remove(true);
value = null;
return;
}
if (WriteCustom(result, value, dictionaryAdapter))
{
return;
}
if (propertyType == typeof(string))
{
WriteSimple(result, value, dictionaryAdapter);
}
else if (typeof(IXPathNavigable).IsAssignableFrom(propertyType))
{
WriteFragment(result, (IXPathNavigable)value);
}
else if (propertyType.IsArray || typeof(IEnumerable).IsAssignableFrom(propertyType))
{
WriteCollection(result, ref value, dictionaryAdapter);
}
else if (propertyType.IsInterface)
{
WriteComponent(result, ref value, dictionaryAdapter);
}
else
{
WriteSimple(result, value, dictionaryAdapter);
}
}
示例2: ReadList
private object ReadList(XPathResult result, IDictionaryAdapter dictionaryAdapter)
{
Type listType = null, initializerType = null;
var arguments = result.Type.GetGenericArguments();
var genericDef = result.Type.GetGenericTypeDefinition();
var itemType = arguments[0];
Func<Type, XmlMetadata> getXmlMeta = type => dictionaryAdapter.GetXmlMeta(type);
var itemNodes = result.GetNodes(itemType, getXmlMeta);
if (itemNodes == null) return null;
if (genericDef == typeof(IEnumerable<>) || genericDef == typeof(ICollection<>) || genericDef == typeof(List<>))
{
listType = typeof(EditableList<>).MakeGenericType(arguments);
}
else if (
#if !DOTNET35
//NOTE: what about SortedSet?
genericDef == typeof(ISet<>) ||
#endif
genericDef == typeof(HashSet<>))
{
listType = typeof(List<>).MakeGenericType(arguments);
}
else
{
listType = typeof(EditableBindingList<>).MakeGenericType(arguments);
initializerType = typeof(BindingListInitializer<>).MakeGenericType(arguments);
}
var list = (IList)Activator.CreateInstance(listType);
foreach (var item in itemNodes)
{
list.Add(ReadProperty(item, false, dictionaryAdapter));
}
if (
#if !DOTNET35
//NOTE: what about SortedSet?
genericDef == typeof(ISet<>) ||
#endif
genericDef == typeof(HashSet<>))
{
return Activator.CreateInstance(typeof(HashSet<>).MakeGenericType(arguments), list);
}
if (initializerType != null)
{
Func<object> addNew = () =>
{
var node = result.CreateNode(itemType, null, getXmlMeta);
return ReadProperty(node, false, dictionaryAdapter);
};
Func<int, object, object> addAt = (index, item) =>
{
var node = result.CreateNode(itemType, item, getXmlMeta);
WriteProperty(node, ref item, dictionaryAdapter);
return item;
};
Func<int, object, object> setAt = (index, item) =>
{
var node = result.GetNodeAt(itemType, index);
WriteProperty(node, ref item, dictionaryAdapter);
return item;
};
Action<int> removeAt = index =>
{
object value = list;
if (dictionaryAdapter.ShouldClearProperty(result.Property, value))
{
result.Remove(true);
return;
}
result.RemoveAt(index);
};
Action reset = () =>
{
object value = list;
if (dictionaryAdapter.ShouldClearProperty(result.Property, value))
{
result.Remove(true);
return;
}
WriteCollection(result, ref value, dictionaryAdapter);
};
var initializer = (IValueInitializer)Activator.CreateInstance(
initializerType, addAt, addNew, setAt, removeAt, reset);
initializer.Initialize(dictionaryAdapter, list);
}
return list;
}