本文整理汇总了C#中System.Xml.XPath.XPathResult.Remove方法的典型用法代码示例。如果您正苦于以下问题:C# XPathResult.Remove方法的具体用法?C# XPathResult.Remove怎么用?C# XPathResult.Remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Xml.XPath.XPathResult
的用法示例。
在下文中一共展示了XPathResult.Remove方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: WriteCollection
private void WriteCollection(XPathResult result, ref object value, IDictionaryAdapter dictionaryAdapter)
{
if (value is byte[])
{
var node = result.GetNavigator(true);
node.SetValue(Convert.ToBase64String((byte[])value));
return;
}
result.Remove(value == null);
if (value != null)
{
if (result.Type.IsArray)
{
WriteArray(result, value, dictionaryAdapter);
}
else if (result.Type.IsGenericType)
{
WriteList(result, value, dictionaryAdapter);
}
if (result.Property != null)
{
value = ((IDictionaryPropertyGetter)this).GetPropertyValue(dictionaryAdapter, result.Key, null, result.Property, false);
}
}
}
示例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;
}
示例3: 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);
}
}
示例4: WriteCollection
private void WriteCollection(XPathResult result, ref object value, IDictionaryAdapter dictionaryAdapter)
{
result.Remove(value == null);
if (value != null)
{
if (result.Type.IsArray)
{
WriteArray(result, value, dictionaryAdapter);
}
else if (result.Type.IsGenericType)
{
WriteList(result, value, dictionaryAdapter);
}
if (result.Property != null)
{
value = ((IDictionaryPropertyGetter)this).GetPropertyValue(dictionaryAdapter, result.Key, null, result.Property, false);
}
}
}
示例5: WriteCollection
private void WriteCollection(XPathResult result, object value, IDictionaryAdapter dictionaryAdapter)
{
result.Remove();
if (value != null)
{
if (result.Type.IsArray)
{
WriteArray(result, value, dictionaryAdapter);
}
else if (result.Type.IsGenericType)
{
WriteList(result, value, dictionaryAdapter);
}
}
}
示例6: WriteComponent
private void WriteComponent(XPathResult result, object value, IDictionaryAdapter dictionaryAdapter)
{
if (result.Property != null)
{
dictionaryAdapter.This.ExtendedProperties.Remove(result.Property.PropertyName);
}
if (value == null)
{
result.Remove();
return;
}
var source = value as IDictionaryAdapter;
if (source != null)
{
var node = result.RemoveChildren();
if (result.Type != source.Meta.Type && result.OmitPolymorphism == false)
{
var xmlType = source.GetXmlMeta().XmlType;
Context.SetXmlType(xmlType.TypeName, xmlType.Namespace, node);
}
var element = (IDictionaryAdapter)ReadComponent(result, false, dictionaryAdapter);
source.CopyTo(element);
}
}
示例7: WriteSimple
private void WriteSimple(XPathResult result, object value, IDictionaryAdapter dictionaryAdapter)
{
if (value == null)
{
result.Remove();
if (result.Property != null)
dictionaryAdapter.This.ExtendedProperties.Remove(result.Property.PropertyName);
return;
}
var node = result.GetNavigator(true);
if (result.Type.IsEnum || result.Type == typeof(Guid))
{
node.SetTypedValue(value.ToString());
}
else
{
try
{
node.SetTypedValue(value);
}
catch (InvalidCastException)
{
if (DefaultXmlSerializer.Instance.WriteObject(result, node, value) && result.Property != null)
{
dictionaryAdapter.This.ExtendedProperties[result.Property.PropertyName] = value;
}
}
}
}
示例8: WritePrimitive
private void WritePrimitive(XPathResult result, object value)
{
if (value == null)
{
result.Remove();
}
else if (result.Type.IsEnum)
{
result.GetNavigator(true).SetTypedValue(value.ToString());
}
else
{
try
{
result.GetNavigator(true).SetTypedValue(value);
}
catch (InvalidCastException)
{
var converter = TypeDescriptor.GetConverter(result.Type);
if (converter != null && converter.CanConvertTo(typeof(string)))
{
value = converter.ConvertToString(value);
result.GetNavigator(true).SetTypedValue(value);
}
}
}
}