XmlElement.RemoveAttributeNode Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
bir XmlAttributeöğesini kaldırır.
Aşırı Yüklemeler
| Name | Description |
|---|---|
| RemoveAttributeNode(XmlAttribute) |
Belirtilen XmlAttributeöğesini kaldırır. |
| RemoveAttributeNode(String, String) |
Belirtilen değeri XmlAttribute yerel ad ve ad alanı URI'sine göre kaldırır. (Kaldırılan özniteliğin varsayılan değeri varsa, hemen değiştirilir). |
RemoveAttributeNode(XmlAttribute)
- Kaynak:
- XmlElement.cs
- Kaynak:
- XmlElement.cs
- Kaynak:
- XmlElement.cs
- Kaynak:
- XmlElement.cs
- Kaynak:
- XmlElement.cs
Belirtilen XmlAttributeöğesini kaldırır.
public:
virtual System::Xml::XmlAttribute ^ RemoveAttributeNode(System::Xml::XmlAttribute ^ oldAttr);
public virtual System.Xml.XmlAttribute RemoveAttributeNode(System.Xml.XmlAttribute oldAttr);
public virtual System.Xml.XmlAttribute? RemoveAttributeNode(System.Xml.XmlAttribute oldAttr);
abstract member RemoveAttributeNode : System.Xml.XmlAttribute -> System.Xml.XmlAttribute
override this.RemoveAttributeNode : System.Xml.XmlAttribute -> System.Xml.XmlAttribute
Public Overridable Function RemoveAttributeNode (oldAttr As XmlAttribute) As XmlAttribute
Parametreler
- oldAttr
- XmlAttribute
Kaldırılacak XmlAttribute düğüm. Kaldırılan özniteliğin varsayılan değeri varsa hemen değiştirilir.
Döndürülenler
kaldırılan XmlAttribute veya nulloldAttr öğesinin XmlElementbir öznitelik düğümü değilse.
Özel durumlar
Bu düğüm salt okunur.
Şunlara uygulanır
RemoveAttributeNode(String, String)
- Kaynak:
- XmlElement.cs
- Kaynak:
- XmlElement.cs
- Kaynak:
- XmlElement.cs
- Kaynak:
- XmlElement.cs
- Kaynak:
- XmlElement.cs
Belirtilen değeri XmlAttribute yerel ad ve ad alanı URI'sine göre kaldırır. (Kaldırılan özniteliğin varsayılan değeri varsa, hemen değiştirilir).
public:
virtual System::Xml::XmlAttribute ^ RemoveAttributeNode(System::String ^ localName, System::String ^ namespaceURI);
public virtual System.Xml.XmlAttribute RemoveAttributeNode(string localName, string namespaceURI);
public virtual System.Xml.XmlAttribute? RemoveAttributeNode(string localName, string? namespaceURI);
abstract member RemoveAttributeNode : string * string -> System.Xml.XmlAttribute
override this.RemoveAttributeNode : string * string -> System.Xml.XmlAttribute
Public Overridable Function RemoveAttributeNode (localName As String, namespaceURI As String) As XmlAttribute
Parametreler
- localName
- String
Özniteliğin yerel adı.
- namespaceURI
- String
Özniteliğin ad alanı URI'si.
Döndürülenler
kaldırılan XmlAttribute veya null eşleşen bir öznitelik düğümüne sahip değilse XmlElement .
Özel durumlar
Bu düğüm salt okunur.
Örnekler
Aşağıdaki örnek bir öğeden bir özniteliği kaldırır.
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book xmlns:bk='urn:samples' bk:ISBN='1-861001-57-5'>" +
"<title>Pride And Prejudice</title>" +
"</book>");
XmlElement root = doc.DocumentElement;
// Remove the ISBN attribute.
root.RemoveAttributeNode("ISBN", "urn:samples");
Console.WriteLine("Display the modified XML...");
Console.WriteLine(doc.InnerXml);
}
}
Imports System.IO
Imports System.Xml
public class Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.LoadXml("<book xmlns:bk='urn:samples' bk:ISBN='1-861001-57-5'>" & _
"<title>Pride And Prejudice</title>" & _
"</book>")
Dim root as XmlElement = doc.DocumentElement
' Remove the ISBN attribute.
root.RemoveAttributeNode("ISBN", "urn:samples")
Console.WriteLine("Display the modified XML...")
Console.WriteLine(doc.InnerXml)
end sub
end class