Extensions.Remove 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Remove(IEnumerable<XAttribute>) |
将源集合中的每个属性从其父元素中移除。 |
Remove<T>(IEnumerable<T>) |
将源集合中的每个节点从其父节点中移除。 |
Remove(IEnumerable<XAttribute>)
将源集合中的每个属性从其父元素中移除。
public:
[System::Runtime::CompilerServices::Extension]
static void Remove(System::Collections::Generic::IEnumerable<System::Xml::Linq::XAttribute ^> ^ source);
public static void Remove (this System.Collections.Generic.IEnumerable<System.Xml.Linq.XAttribute> source);
public static void Remove (this System.Collections.Generic.IEnumerable<System.Xml.Linq.XAttribute?> source);
static member Remove : seq<System.Xml.Linq.XAttribute> -> unit
<Extension()>
Public Sub Remove (source As IEnumerable(Of XAttribute))
参数
- source
- IEnumerable<XAttribute>
一个包含源集合的 IEnumerable<T> 的 XAttribute。
示例
以下示例检索属性集合,然后调用此方法将其从父元素中删除。
XElement root = new XElement("Root",
new XAttribute("Att1", 1),
new XAttribute("Att2", 2),
new XAttribute("Att3", 3),
new XAttribute("Att4", 4),
new XAttribute("Att5", 5)
);
IEnumerable<XAttribute> atList =
from at in root.Attributes()
where (int)at >= 3
select at;
atList.Remove();
Console.WriteLine(root);
Dim root As XElement = <Root Att1="1" Att2="2" Att3="3" Att4="4" Att5="5"/>
Dim atList = From at In root.Attributes _
Where at.Value >= 3 _
Select at
atList.Remove()
Console.WriteLine(root)
该示例产生下面的输出:
<Root Att1="1" Att2="2" />
注解
此方法使用快照语义 ,即,在将源集合中的属性与父级断开连接之前,将源集合中的属性复制到其中 System.Collections.Generic.List<T> 。 这需要避免混合命令性/声明性代码的问题。 有关详细信息,请参阅混合声明性代码/命令性代码 bug (LINQ to XML) 。
另请参阅
适用于
Remove<T>(IEnumerable<T>)
将源集合中的每个节点从其父节点中移除。
public:
generic <typename T>
where T : System::Xml::Linq::XNode[System::Runtime::CompilerServices::Extension]
static void Remove(System::Collections::Generic::IEnumerable<T> ^ source);
public static void Remove<T> (this System.Collections.Generic.IEnumerable<T> source) where T : System.Xml.Linq.XNode;
public static void Remove<T> (this System.Collections.Generic.IEnumerable<T?> source) where T : System.Xml.Linq.XNode;
static member Remove : seq<'T (requires 'T :> System.Xml.Linq.XNode)> -> unit (requires 'T :> System.Xml.Linq.XNode)
<Extension()>
Public Sub Remove(Of T As XNode) (source As IEnumerable(Of T))
类型参数
- T
source
中对象的类型,被约束为 XNode。
参数
- source
- IEnumerable<T>
一个包含源集合的 IEnumerable<T> 的 XNode。
示例
以下示例检索元素集合。 然后,它调用此方法从其父元素中删除元素。
XElement root = new XElement("Root",
new XElement("Data", 1),
new XElement("Data", 2),
new XElement("Data", 3),
new XElement("Data", 4),
new XElement("Data", 5)
);
IEnumerable<XElement> elList =
from el in root.Elements()
where (int)el >= 3
select el;
elList.Remove();
Console.WriteLine(root);
Dim root As XElement = _
<Root>
<Data>1</Data>
<Data>2</Data>
<Data>3</Data>
<Data>4</Data>
<Data>5</Data>
</Root>
Dim elList = From el In root.Elements _
Where el.Value >= 3 _
Select el
elList.Remove()
Console.WriteLine(root)
该示例产生下面的输出:
<Root>
<Data>1</Data>
<Data>2</Data>
</Root>
注解
此方法使用快照语义 ,即,在将源集合中的属性与父级断开连接之前,将源集合中的属性复制到其中 List<T>
。 这需要避免混合命令性/声明性代码的问题。 有关详细信息,请参阅混合声明性代码/命令性代码 bug (LINQ to XML) 。